Skip to content

Commit

Permalink
Laravel 11 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tpetry committed Mar 12, 2024
1 parent f61103a commit c27f91e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
exclude:
# These combinations should work, but there is a problem when testing...
Expand All @@ -19,6 +19,11 @@ jobs:
php: 8.2
- laravel: 8.*
php: 8.3
# Laravel 10.x only supports PHP ^8.2
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1
# Laravel 10.x only supports PHP ^8.1
- laravel: 10.*
php: 8.0
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
"php": "^8.0",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"spatie/invade": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^3.1|^4.0|^5.0|^6.0|^7.0",
"nunomaduro/larastan": "^1.0|^2.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0"
Expand Down

0 comments on commit c27f91e

Please sign in to comment.