Skip to content

Commit 30ce52d

Browse files
authored
Merge pull request #124 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 89d6f47 + 3867b66 commit 30ce52d

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,16 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.1, 8.2]
15-
laravel: ['10.*', '11.*']
16-
dependency-version: [prefer-lowest, prefer-stable]
14+
php: [8.2, 8.3, 8.4]
15+
laravel: ['10.*', '11.*', '12.*']
16+
dependency-version: [prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: ^8.0
2020
- laravel: 11.*
2121
testbench: ^9.0
22-
exclude:
23-
- laravel: 11.*
24-
php: 8.1
22+
- laravel: 12.*
23+
testbench: ^10.0
2524

2625
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2726

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0",
20-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/view": "^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
2222
"livewire/livewire": "^3.0",
2323
"spatie/sun": "^1.1.1"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
27-
"phpunit/phpunit": "^9.3|^10.5",
26+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
27+
"phpunit/phpunit": "^9.3|^10.5|^11.5.3",
2828
"spatie/phpunit-snapshot-assertions": "^4.2|^5.1"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)