Skip to content

Commit

Permalink
chore: support laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
nerg4l committed May 19, 2024
1 parent 80fa209 commit 1840a64
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.0, 8.1, 8.2 ]
laravel: [ '^9.0', '^10.0' ]
php: [ 8.0, 8.1, 8.2, 8.3 ]
laravel: [ '^9.0', '^10.0', '^11.0' ]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.0
laravel: '^10.0'
- laravel: '^9.0'
php: 8.3
- laravel: '^10.0'
php: 8.0
- laravel: '^11.0'
php: 8.0
- laravel: '^11.0'
php: 8.1

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

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
],
"require": {
"php": "^8.0",
"illuminate/console": "^9.0 || ^10.0",
"illuminate/filesystem": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"illuminate/translation": "^9.0 || ^10.0",
"illuminate/view": "^9.0 || ^10.0",
"illuminate/console": "^9.0 || ^10.0 || ^11.0",
"illuminate/filesystem": "^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"illuminate/translation": "^9.0 || ^10.0 || ^11.0",
"illuminate/view": "^9.0 || ^10.0 || ^11.0",
"nikic/php-parser": "^4.18 || ^5.0"
},
"require-dev": {
"orchestra/testbench": "^7.3 || ^8.0",
"orchestra/testbench": "^7.3 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
Expand Down

0 comments on commit 1840a64

Please sign in to comment.