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 ab6acd6 commit b2cfbf3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
"require": {
"php": "^8.1|^8.2|^8.3",
"guzzlehttp/guzzle": "^7.0",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/filesystem": "^9.0|^10.0|^11.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"symfony/var-exporter": "^5.0|^6.0"
},
"require-dev": {
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit b2cfbf3

Please sign in to comment.