Skip to content

Commit 3f95757

Browse files
committed
Add support for Laravel v12 and PHP 8.4
1 parent 3449314 commit 3f95757

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [8.1, 8.2, 8.3]
14-
laravel: [10.*, 11.*]
13+
php: [8.1, 8.2, 8.3, 8.4]
14+
laravel: [10.*, 11.*, 12.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
exclude:
17+
- php: 8.1
18+
laravel: 12.*
1719
- php: 8.1
1820
laravel: 11.*
1921

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^8.1|^8.2|^8.3",
23-
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0",
25-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0"
22+
"php": "^8.1|^8.2|^8.3|^8.4",
23+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
25+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2626
},
2727
"require-dev": {
2828
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
2929
"friendsofphp/php-cs-fixer": "^3.0",
30-
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0",
31-
"phpunit/phpunit": "^9.1|^10.0",
30+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
31+
"phpunit/phpunit": "^9.1|^10.0|^11.0",
3232
"squizlabs/php_codesniffer": "^3.6"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)