Skip to content

Commit

Permalink
add Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
macbookandrew committed Oct 21, 2024
1 parent ae76767 commit 3bbe5fa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.0,8.1,8.2]
laravel: [9.*,10.*]
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
stability: [prefer-stable]
include:
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"spatie/laravel-package-tools": "^1.9.2"
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "^7.0|^8.0",
"vimeo/psalm": "^4.8"
"nunomaduro/collision": "^5.3|^6.0|^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"vimeo/psalm": "^4.8|^5.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3bbe5fa

Please sign in to comment.