Skip to content

Commit dd0ef4e

Browse files
authored
Merge pull request #25 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 9f03e8b + 11fc9dd commit dd0ef4e

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
strategy:
1212
matrix:
1313
php: [7.4, 8.0, 8.1, '8.2']
14-
laravel: ['8.*', '9.*', '10.*', '11.*']
14+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
exclude:
1717
- php: 7.4
@@ -26,6 +26,12 @@ jobs:
2626
php: 8.0
2727
- laravel: 11.*
2828
php: 8.1
29+
- laravel: 12.*
30+
php: 7.4
31+
- laravel: 12.*
32+
php: 8.0
33+
- laravel: 12.*
34+
php: 8.1
2935
include:
3036
- laravel: 10.*
3137
testbench: ^8.0
@@ -35,6 +41,8 @@ jobs:
3541
testbench: ^6.23
3642
- laravel: 11.*
3743
testbench: ^9.0
44+
- laravel: 12.*
45+
testbench: ^10.0
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
@@ -19,11 +19,11 @@
1919
],
2020
"require": {
2121
"php": "^7.4|^8.0|^8.1",
22-
"laravel/framework": "^8.0|^9.0|^10.0|^11.0"
22+
"laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^6.0|^9.0",
26-
"phpunit/phpunit": "^9.0|^10.5",
25+
"orchestra/testbench": "^6.0|^9.0|^10.0",
26+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3",
2727
"spatie/laravel-ray": "^1.25"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)