Skip to content

Commit

Permalink
feat: support Laravel 12
Browse files Browse the repository at this point in the history
  • Loading branch information
SRWieZ committed Feb 6, 2025
1 parent 604b985 commit afa4a6c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3]
laravel: ['10.*', '11.*']
php: [8.2, 8.3, 8.4]
laravel: ['10.*', '11.*', '12.*']
stability: [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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"php": "^8.0",
"dragonmantank/cron-expression": "^3.3.1",
"guzzlehttp/guzzle": "^6.5|^7.4.5|^7.2",
"illuminate/console": "^8.75|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.75|^9.0|^10.0|^11.0",
"illuminate/database": "^8.75|^9.0|^10.0|^11.0",
"illuminate/notifications": "^8.75|^9.0|^10.0|^11.0",
"illuminate/support": "^8.75|^9.0|^10.0|^11.0",
"illuminate/console": "^8.75|^9.0|^10.0|^11.0|^12.0",
"illuminate/contracts": "^8.75|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^8.75|^9.0|^10.0|^11.0|^12.0",
"illuminate/notifications": "^8.75|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^8.75|^9.0|^10.0|^11.0|^12.0",
"laravel/serializable-closure": "^1.3|^2.0",
"nunomaduro/termwind": "^1.0|^2.0",
"spatie/enum": "^3.13",
Expand Down

0 comments on commit afa4a6c

Please sign in to comment.