Skip to content

Commit

Permalink
🔧 support laravel 12
Browse files Browse the repository at this point in the history
  • Loading branch information
willpower232 committed Feb 24, 2025
1 parent dd9cd4f commit 472bb6e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: [10, 11]
laravel: [10, 11, 12]
php: [8.1, 8.2, 8.3, 8.4]
exclude:
- php: 8.1
laravel: 11
- php: 8.1
laravel: 12

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
],
"require": {
"php": "^8.0",
"illuminate/session": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
"illuminate/session": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0",
"phpunit/phpunit": "^10.0|^11.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
Expand Down

0 comments on commit 472bb6e

Please sign in to comment.