Skip to content

Commit d282e05

Browse files
committed
feat: Laravel 12 support
1 parent 36851fb commit d282e05

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [ 8.0, 8.1, 8.2, 8.3 ]
19-
laravel: [ '^9.0', '^10.0', '^11.0' ]
18+
php: [ 8.0, 8.1, 8.2, 8.3, 8.4 ]
19+
laravel: [ '^9.0', '^10.0', '^11.0', '^12.0' ]
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
exclude:
2222
- laravel: '^9.0'
@@ -27,6 +27,10 @@ jobs:
2727
php: 8.0
2828
- laravel: '^11.0'
2929
php: 8.1
30+
- laravel: '^12.0'
31+
php: 8.0
32+
- laravel: '^12.0'
33+
php: 8.1
3034

3135
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3236

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
],
1616
"require": {
1717
"php": "^8.0",
18-
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
19-
"illuminate/http": "^9.0 || ^10.0 || ^11.0"
18+
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0",
19+
"illuminate/http": "^9.0 || ^10.0 || ^11.0 || ^12.0"
2020
},
2121
"require-dev": {
22-
"orchestra/testbench": "^7.3 || ^8.0 || ^9.0",
23-
"phpunit/phpunit": "^9.5 || ^10.5"
22+
"orchestra/testbench": "^7.3 || ^8.0 || ^9.0 || ^10.0",
23+
"phpunit/phpunit": "^9.5 || ^10.5 || ^11.5"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)