Skip to content

Commit

Permalink
chore: add support for laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
shuvroroy committed Feb 12, 2024
1 parent 152bc92 commit 2775c1e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,25 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2]
laravel: [9.*, 10.*]
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- php: '8.0'
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 11.*
- php: 8.3
laravel: 9.*

name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
],
"require": {
"php": "^8.0",
"illuminate/database": "^9.0||^10.0",
"illuminate/events": "^9.0||^10.0"
"illuminate/database": "^9.0||^10.0||^11.0",
"illuminate/events": "^9.0||^10.0||^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0||^8.0",
"orchestra/testbench": "^7.0||^8.0||^9.0",
"phpunit/phpunit": "^9.5.10||^10.0",
"tightenco/duster": "^2.7"
},
Expand Down

0 comments on commit 2775c1e

Please sign in to comment.