Skip to content

Commit

Permalink
Merge pull request #116 from erikn69/patch-6
Browse files Browse the repository at this point in the history
Laravel 11 Support
  • Loading branch information
freekmurze authored Feb 29, 2024
2 parents cc862f5 + cb7f8ae commit f7b00a3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,22 @@ jobs:
fail-fast: false
matrix:
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*, 8.*]
laravel: [11.*, 10.*, 9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 11.*
php: 8.1
- laravel: 11.*
php: 8.0
- laravel: 10.*
php: 8.0

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
],
"require": {
"php": "^8.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0"
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"brianium/paratest": "^6.2|^7.4",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "^6.15|^7.0|^8.0",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5.4"
"nunomaduro/collision": "^5.3|^6.0|^8.0",
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0",
"pestphp/pest-plugin-laravel": "^1.3|^2.1",
"phpunit/phpunit": "^9.6|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f7b00a3

Please sign in to comment.