Skip to content

Commit

Permalink
Laravel 12.x Compatibility (#216)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 12

* Update GitHub Actions for Laravel 12
  • Loading branch information
laravel-shift authored Mar 4, 2025
1 parent c02a343 commit b38ecbb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.1, '8.2']
laravel: ['10.*', '11.*']
laravel: ['10.*', '11.*', '12.*']
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
exclude:
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.1

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0",
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0 | ^12.0",
"pboivin/filament-peek": "^2.0",
"spatie/laravel-package-tools": "^1.13.5"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0 | ^8.0",
"orchestra/testbench": "^8.0 | ^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"pestphp/pest-plugin-livewire": "^2.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"orchestra/testbench": "^8.0 | ^9.0 | ^10.0",
"pestphp/pest": "^2.0 | ^3.7",
"pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
"pestphp/pest-plugin-livewire": "^2.0 | ^3.0",
"phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
"phpstan/phpstan-phpunit": "^1.0 | ^2.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
Expand Down

0 comments on commit b38ecbb

Please sign in to comment.