Skip to content

Commit

Permalink
Add support for Laravel v11
Browse files Browse the repository at this point in the history
  • Loading branch information
gdebrauwer committed Mar 12, 2024
1 parent 8d6a23b commit 9bfce49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
laravel: [9.*, 10.*]
laravel: [9.*, 10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.3
Expand All @@ -20,6 +20,8 @@ jobs:
- php: 8.2
laravel: 9.*
dependency-version: prefer-lowest
- php: 8.1
laravel: 11.*

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"require": {
"php": "^8.1|^8.2|^8.3",
"ext-json": "*",
"laravel/framework": "^9.0|^10.0"
"laravel/framework": "^9.0|^10.0|^11.0"
},
"suggest": {
"ext-yaml": "*"
Expand All @@ -30,7 +30,7 @@
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"jasonmccreary/laravel-test-assertions": "^2.3",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit 9bfce49

Please sign in to comment.