Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11220f9

Browse files
authored
Merge pull request #26 from maxdestors/feature/update-package-for-laravel-12-compatibility
Add Laravel 12 compatibility
2 parents 6e99816 + 1ffada0 commit 11220f9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Table of contents:
3939
| Locked Page |
4040

4141
### Requirements
42-
* [Laravel 5.3, 5.4, 5.5+ ,6+, 7+, 8+, 9+, 10+, and 11+](https://laravel.com/docs/installation)
42+
* [Laravel 5.3, 5.4, 5.5+ ,6+, 7+, 8+, 9+, 10+, 11+, and 12+](https://laravel.com/docs/installation)
4343

4444
### Installation Instructions
4545
1. From your projects root folder in terminal run:

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.3|^8.0|^8.1|^8.2",
19-
"laravel/framework": "6.*|7.*|8.*|9.*|10.*|11.*"
18+
"php": "^7.3|^8.0|^8.1|^8.2|^8.3",
19+
"laravel/framework": "6.*|7.*|8.*|9.*|10.*|11.*|12.*"
2020
},
2121
"require-dev": {
22-
"illuminate/support": "^8.5",
23-
"laravel/laravel": "^8.0",
24-
"laravel/tinker": "^2.4",
25-
"orchestra/testbench": "^6.0",
22+
"illuminate/support": "^8.5|^9.0|^10.0|^11.0|^12.0",
23+
"laravel/laravel": "^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"laravel/tinker": "^2.4|^3.0",
25+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
2626
"suin/phpcs-psr4-sniff": "^3.0"
2727
},
2828
"autoload": {

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
processIsolation="false"
1111
stopOnFailure="false">
1212
<testsuites>
13-
<testsuite name="Feature">
14-
<directory suffix="Test.php">./tests/Feature</directory>
13+
<testsuite name="Package">
14+
<directory suffix="Test.php">./tests</directory>
1515
</testsuite>
1616
</testsuites>
1717
<filter>

0 commit comments

Comments
 (0)