Skip to content

Commit 739d353

Browse files
authored
Merge pull request #155 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents f8054d0 + 9eb6c67 commit 739d353

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
php: [8.2, 8.3]
16-
laravel: ['10.*', '11.*']
15+
php: [8.2, 8.3, 8.4]
16+
laravel: ['10.*', '11.*', '12.*']
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
1919
- laravel: 10.*
2020
testbench: 8.*
2121
- laravel: 11.*
2222
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2325

2426
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2527

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/contracts": "^10.0|^11.0",
20+
"illuminate/contracts": "^10.0|^11.0|^12.0",
2121
"nesbot/carbon": "^2.63|^3.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^8.0|^9.0",
25-
"phpunit/phpunit": "^9.5.10|^10.5"
24+
"orchestra/testbench": "^8.0|^9.0|^10.0",
25+
"phpunit/phpunit": "^9.5.10|^10.5|^11.5.3"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)