Skip to content

Commit

Permalink
laravel 12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Sairahcaz committed Feb 23, 2025
1 parent 58e04bd commit 95e7e5e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 19 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1, 8.0]
laravel: [11.*, 10.*, 9.*]
php: [8.3, 8.2, 8.1]
laravel: ['9.*', '10.*', '11.*', '12.*']
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
Expand All @@ -23,17 +23,13 @@ jobs:
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 12.*
testbench: 10.*
exclude:
- laravel: 11.*
- php: 8.1
laravel: 11.*
- laravel: 12.*
php: 8.1
- laravel: 11.*
php: 8.0
- laravel: 10.*
php: 8.0
- laravel: 10.*
php: 7.4
- laravel: 9.*
php: 7.4

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
],
"require": {
"php": "^8.0",
"illuminate/database": "^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"illuminate/testing": "^9.0 || ^10.0 || ^11.0",
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
"illuminate/database": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"illuminate/testing": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"spatie/laravel-package-tools": "^1.12 || ^1.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"nunomaduro/larastan": "^1.0 || ^2.5",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"pestphp/pest": "^1.22 || ^2.0",
"pestphp/pest-plugin-laravel": "^1.22 || ^2.0",
"nunomaduro/larastan": "^1.0 || ^2.5 || ^3.1",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"pestphp/pest": "^1.22 || ^2.0 || ^3.7",
"pestphp/pest-plugin-laravel": "^1.22 || ^2.0 || ^3.1",
"spatie/laravel-ray": "^1.32"
},
"autoload": {
Expand Down

0 comments on commit 95e7e5e

Please sign in to comment.