Skip to content

Commit

Permalink
Merge pull request #154 from shuvroroy/main
Browse files Browse the repository at this point in the history
Add support for laravel 11
  • Loading branch information
freekmurze authored Feb 12, 2024
2 parents afadb71 + 7212610 commit db35a17
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,24 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*, 8.*]
php: [8.3, 8.2, 8.1, 8.0]
laravel: [11.*, 10.*, 9.*, 8.*]
os: [ubuntu-latest]
dependency-version: [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
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.3",
"illuminate/bus": "^8.50|^9.0|^10.0",
"illuminate/queue": "^8.50|^9.0|^10.0",
"illuminate/support": "^8.50|^9.0|^10.0",
"illuminate/bus": "^8.50|^9.0|^10.0|^11.0",
"illuminate/queue": "^8.50|^9.0|^10.0|^11.0",
"illuminate/support": "^8.50|^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.19|^7.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"orchestra/testbench": "^6.19|^7.0|^8.0",
"pestphp/pest": "^1.22|^2.0",
"pestphp/pest-plugin-laravel": "^1.3|^2.0",
"spatie/test-time": "^1.2.2"
},
"autoload": {
Expand Down

0 comments on commit db35a17

Please sign in to comment.