Skip to content

Commit 9880729

Browse files
authored
Merge pull request #117 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents bcde5fe + 7841ac9 commit 9880729

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest]
2222
php: [8.1, 8.2, 8.3]
23-
laravel: ['9.*', '10.*', '11.*']
23+
laravel: ['9.*', '10.*', '11.*', '12.*']
2424
stability: [prefer-stable]
2525
include:
2626
- laravel: 9.*
@@ -29,11 +29,15 @@ jobs:
2929
testbench: ^8.0
3030
- laravel: 11.*
3131
testbench: ^9.0
32+
- laravel: 12.*
33+
testbench: ^10.0
3234
exclude:
3335
- laravel: 9.*
3436
php: 8.3
3537
- laravel: 11.*
3638
php: 8.1
39+
- laravel: 12.*
40+
php: 8.1
3741

3842
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3943

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
],
1919
"require": {
2020
"php": "^8.0|^8.1|^8.2",
21-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
21+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^6.22|^7.0|^8.0|^9.0",
25-
"phpunit/phpunit": "^9.5|^10.0",
24+
"orchestra/testbench": "^6.22|^7.0|^8.0|^9.0|^10.0",
25+
"phpunit/phpunit": "^9.5|^10.0|^11.5.3",
2626
"squizlabs/php_codesniffer": "*"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)