Skip to content

Commit b38ecbb

Browse files
Laravel 12.x Compatibility (#216)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent c02a343 commit b38ecbb

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,20 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest]
2121
php: [8.1, '8.2']
22-
laravel: ['10.*', '11.*']
22+
laravel: ['10.*', '11.*', '12.*']
2323
stability: [prefer-lowest, prefer-stable]
2424
include:
2525
- laravel: 10.*
2626
testbench: 8.*
2727
- laravel: 11.*
2828
testbench: 9.*
29+
- laravel: 12.*
30+
testbench: 10.*
2931
exclude:
3032
- laravel: 11.*
3133
php: 8.1
34+
- laravel: 12.*
35+
php: 8.1
3236

3337
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3438

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
"require": {
1919
"php": "^8.1",
2020
"filament/filament": "^3.0",
21-
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0",
21+
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0 | ^12.0",
2222
"pboivin/filament-peek": "^2.0",
2323
"spatie/laravel-package-tools": "^1.13.5"
2424
},
2525
"require-dev": {
2626
"larastan/larastan": "^2.9",
2727
"laravel/pint": "^1.0",
2828
"nunomaduro/collision": "^7.0 | ^8.0",
29-
"orchestra/testbench": "^8.0 | ^9.0",
30-
"pestphp/pest": "^2.0",
31-
"pestphp/pest-plugin-laravel": "^2.0",
32-
"pestphp/pest-plugin-livewire": "^2.0",
33-
"phpstan/phpstan-deprecation-rules": "^1.0",
34-
"phpstan/phpstan-phpunit": "^1.0",
29+
"orchestra/testbench": "^8.0 | ^9.0 | ^10.0",
30+
"pestphp/pest": "^2.0 | ^3.7",
31+
"pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
32+
"pestphp/pest-plugin-livewire": "^2.0 | ^3.0",
33+
"phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
34+
"phpstan/phpstan-phpunit": "^1.0 | ^2.0",
3535
"spatie/laravel-ray": "^1.26"
3636
},
3737
"autoload": {

0 commit comments

Comments
 (0)