Skip to content

Commit d860628

Browse files
committed
Laravel 12 support
1 parent e6431cb commit d860628

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
os: [ubuntu-latest]
14-
php: [ 8.3, 8.2 ]
15-
laravel: [ '10.*', '11.*' ]
14+
php: [ 8.4, 8.3 ]
15+
laravel: [ ^12.0, ^11.0 ]
1616
stability: [prefer-lowest, prefer-stable]
1717
include:
18-
- laravel: 11.*
19-
testbench: 9.*
20-
- laravel: 10.*
21-
testbench: 8.*
18+
- laravel: ^12.0
19+
testbench: ^10.0
20+
- laravel: ^11.0
21+
testbench: ^9.0
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2424

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
}
1010
],
1111
"require": {
12-
"php": "^8.2",
13-
"illuminate/support": "^10.0|^11.0"
12+
"php": "^8.3",
13+
"illuminate/support": "^11.0|^12.0"
1414
},
1515
"require-dev": {
1616
"laravel/pint": "^1.0",
17-
"orchestra/testbench": "^8.0|^9.0",
18-
"phpunit/phpunit": "^10.5|^11.0"
17+
"orchestra/testbench": "^9.0|^10.0",
18+
"phpunit/phpunit": "^11.0"
1919
},
2020
"config": {
2121
"sort-packages": true
@@ -44,4 +44,4 @@
4444
},
4545
"minimum-stability": "dev",
4646
"prefer-stable": true
47-
}
47+
}

0 commit comments

Comments
 (0)