Skip to content

Commit 98b01bc

Browse files
authored
Support Laravel 12 (#294)
1 parent e7c8237 commit 98b01bc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
strategy:
1111
matrix:
1212
php: ['8.3', '8.4']
13-
laravel: [10.*, 11.*]
13+
laravel: [11.*, 12.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 12.*
17+
testbench: 10.*
1618
- laravel: 11.*
17-
- testbench: 9.*
18-
- laravel: 10.*
19-
testbench: 8.*
19+
testbench: 9.*
2020
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2121

2222
steps:

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
},
2020
"require": {
2121
"php": "~8.3 || ~8.4",
22-
"illuminate/support": "^10.0 || ^11.0"
22+
"illuminate/support": "^11.0 || ^12.0"
2323
},
2424
"require-dev": {
2525
"ergebnis/composer-normalize": "^2.39",
26-
"orchestra/testbench": "^8.0 || ^9.0",
27-
"phpunit/phpunit": "^10.5"
26+
"orchestra/testbench": "^9.0 || ^10.0",
27+
"phpunit/phpunit": "^10.5 || ^11.5.3"
2828
},
2929
"minimum-stability": "dev",
3030
"prefer-stable": true,

0 commit comments

Comments
 (0)