Skip to content

Commit 2b14426

Browse files
Laravel 12.x Compatibility (#32)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 46be046 commit 2b14426

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php: [8.2, 8.1, 8.0, 7.4]
14-
laravel: ['8.*', '9.*', '10.*', '11.*']
14+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 10.*
@@ -22,6 +22,8 @@ jobs:
2222
testbench: ^6.23
2323
- laravel: 11.*
2424
testbench: ^9.0
25+
- laravel: 12.*
26+
testbench: ^10.0
2527
exclude:
2628
- laravel: 10.*
2729
php: 8.0
@@ -35,6 +37,12 @@ jobs:
3537
php: 8.0
3638
- laravel: 11.*
3739
php: 7.4
40+
- laravel: 12.*
41+
php: 8.1
42+
- laravel: 12.*
43+
php: 8.0
44+
- laravel: 12.*
45+
php: 7.4
3846

3947
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4048

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0",
20-
"illuminate/session": "^8.0|^9.0|^10.0|^11.0"
20+
"illuminate/session": "^8.0|^9.0|^10.0|^11.0|^12.0"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^9.4|^10.5",
24-
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0"
23+
"phpunit/phpunit": "^9.4|^10.5|^11.5.3",
24+
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)