Skip to content

Commit

Permalink
Merge pull request #13 from macbookandrew/chore/laravel-11
Browse files Browse the repository at this point in the history
add Laravel 11 support
  • Loading branch information
SiroDiaz authored Oct 22, 2024
2 parents ae76767 + 00d219b commit 6604afc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,23 @@ 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
- laravel: 11.*
php: 8.1

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 6604afc

Please sign in to comment.