Skip to content

Commit

Permalink
Laravel 10 support (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: Pascal Baljet <[email protected]>
  • Loading branch information
amirsadeghi1 and pascalbaljet authored Feb 21, 2023
1 parent c3e5555 commit 426c1ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*]
php: [8.2, 8.1]
laravel: [10.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"illuminate/mail": "^9.0",
"illuminate/view": "^9.0"
"php": "^8.1 || ^8.2",
"illuminate/mail": "^9.0 || ^10.0",
"illuminate/view": "^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.4"
"orchestra/testbench": "^7.0 || ^8.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 426c1ac

Please sign in to comment.