Skip to content

Commit e1f26f2

Browse files
authored
Merge pull request #16 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents ef48e6c + 810914f commit e1f26f2

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,24 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.0, 8.1, '8.2']
20-
laravel: ['9.*', '11.*']
20+
laravel: ['9.*', '11.*', '12.*']
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 9.*
2424
testbench: 7.*
2525
- laravel: 11.*
2626
testbench: 9.*
27+
- laravel: 12.*
28+
testbench: 10.*
2729
exclude:
2830
- laravel: 11.*
2931
php: 8.0
3032
- laravel: 11.*
3133
php: 8.1
34+
- laravel: 12.*
35+
php: 8.0
36+
- laravel: 12.*
37+
php: 8.1
3238

3339
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3440

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"php": "^8.0",
2020
"filament/filament": "^2.0|^3.0",
2121
"spatie/laravel-package-tools": "^1.9.2",
22-
"illuminate/contracts": "^8.6|^9.0|^10.0|^11.0"
22+
"illuminate/contracts": "^8.6|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
2525
"nunomaduro/collision": "^6.0|^8.0",
26-
"orchestra/testbench": "^7.0|^9.0",
27-
"pestphp/pest": "^1.21|^2.34",
28-
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
29-
"phpunit/phpunit": "^9.5|^10.5",
26+
"orchestra/testbench": "^7.0|^9.0|^10.0",
27+
"pestphp/pest": "^1.21|^2.34|^3.7",
28+
"pestphp/pest-plugin-laravel": "^1.1|^2.3|^3.1",
29+
"phpunit/phpunit": "^9.5|^10.5|^11.5.3",
3030
"spatie/laravel-ray": "^1.26"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)