Skip to content

Commit

Permalink
Laravel 12.x Compatibility (#262)
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 Feb 22, 2025
1 parent 90546e8 commit ec9e0dd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.0, 8.1, 8.2, 8.3]
laravel: ['9.*', '10.*', '11.*']
laravel: ['9.*', '10.*', '11.*', '12.*']
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
Expand All @@ -26,13 +26,19 @@ jobs:
php: 8.0
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.0
- laravel: 12.*
php: 8.1
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
},
"require": {
"php": "^8.0",
"illuminate/database": "^9.0|^10.1.3|^11.0",
"illuminate/support": "^9.0|^10.1.3|^11.0"
"illuminate/database": "^9.0|^10.1.3|^11.0|^12.0",
"illuminate/support": "^9.0|^10.1.3|^11.0|^12.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.6|^10.5"
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"phpstan/phpstan": "^1.9|^2.1",
"phpunit/phpunit": "^9.6|^10.5|^11.5.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ec9e0dd

Please sign in to comment.