Skip to content

Commit

Permalink
support laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
rokde committed May 6, 2024
1 parent 179f230 commit 16617a7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2]
laravel: [10.*]
laravel: [11.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: PHP${{ matrix.php }} Laravel${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@
],
"require": {
"php": "^8.2",
"illuminate/config": "^v10.19",
"illuminate/console": "^v10.19",
"illuminate/contracts": "^v10.19",
"illuminate/database": "^v10.19",
"illuminate/http": "^v10.19",
"illuminate/routing": "^v10.19",
"illuminate/support": "^v10.19",
"illuminate/config": "^10.19|^11.0",
"illuminate/console": "^10.19|^11.0",
"illuminate/contracts": "^10.19|^11.0",
"illuminate/database": "^10.19|^11.0",
"illuminate/http": "^10.19|^11.0",
"illuminate/routing": "^10.19|^11.0",
"illuminate/support": "^10.19|^11.0",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"brianium/paratest": "^v7.2",
"nunomaduro/collision": "^v7.8",
"orchestra/testbench": "^v8.8",
"phpunit/phpunit": "^10.3",
"psalm/plugin-laravel": "^2.8",
"nunomaduro/collision": "^v7.8|^8.0",
"orchestra/testbench": "^v8.8|^9.0",
"phpunit/phpunit": "^10.3|^11.0",
"psalm/plugin-laravel": "^2.11",
"vimeo/psalm": "^5.14"
},
"autoload": {
Expand Down

0 comments on commit 16617a7

Please sign in to comment.