Skip to content

Commit

Permalink
feat: support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
okaufmann committed Mar 20, 2024
1 parent 7f674d6 commit c6fa04f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.1, 8.2 ]
laravel: [ "^9.0", "^10.0" ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ "^9.0", "^10.0", "^11.0" ]
stability: [ prefer-lowest, prefer-stable ]
include:
- laravel: "^9.0"
testbench: "^7.0"
- laravel: "^10.0"
testbench: "^8.0"
- laravel: "^11.0"
testbench: "^9.0"

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"laravel/nova": "^4.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"nunomaduro/collision": "^6.1|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5.10",
"phpunit/phpunit": "^9.5.10|^10.0",
"symfony/var-dumper": "^6.0"
},
"autoload": {
Expand Down

0 comments on commit c6fa04f

Please sign in to comment.