Skip to content

Commit

Permalink
Merge pull request #5 from resohead/laravel9
Browse files Browse the repository at this point in the history
Support Laravel 9
  • Loading branch information
resohead authored Mar 26, 2022
2 parents 63e9317 + 0859f83 commit 27c6270
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
php: [8.1, 8.0]
laravel: [9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": "^7.3 || ^8.0",
"illuminate/support": "^6.0|^7.0|^8.0"
"php": "^8.0",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^8.0 || ^9.0"
"orchestra/testbench": "^6.0 || ^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 27c6270

Please sign in to comment.