Skip to content

Commit

Permalink
build: add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Mar 28, 2024
1 parent 806ea6d commit d8da2e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
fail-fast: false
matrix:
php: [ '8.1', '8.2', '8.3' ]
laravel: [ '10.*' ]
laravel: [ '10.*', '11.*' ]
stability: [ prefer-stable ]
exclude:
- laravel: 11.*
php: '8.1'

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"require": {
"php": "^8.1",
"ext-json": "*",
"laravel/framework": "^10.0"
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
Expand Down

0 comments on commit d8da2e2

Please sign in to comment.