Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
arondeparon committed Mar 25, 2024
1 parent 195af42 commit d8eae18
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,24 @@ jobs:
fail-fast: true
matrix:
php: [8.3, 8.2, 8.1, 8.0]
laravel: [11.*, 10.*, 9.*, 8.*]
laravel: ["^11.0", "^10.0", "^9.0", "^8.12"]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
- laravel: "^11.0"
testbench: 9.*
- laravel: 10.*
- laravel: "^10.0"
testbench: 8.*
- laravel: 9.*
- laravel: "^9.0"
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 8.*
testbench: 6.*
- laravel: "^8.12"
testbench: "^6.23"
exclude:
- laravel: "^11.0"
php: 8.1
- laravel: "^11.0"
php: 8.0
- laravel: "^10.0"
php: 8.0
- laravel: "^9.0"
php: 8.0
- laravel: "^8.12"
php: 8.3

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^8.0",
"symfony/http-foundation": "^4.3.4|>=5.1.3|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.4"
},
"autoload": {
Expand Down

0 comments on commit d8eae18

Please sign in to comment.