Skip to content

Commit

Permalink
Merge pull request #184 from laravel/laravel8
Browse files Browse the repository at this point in the history
[2.x] Laravel 8 support
  • Loading branch information
driesvints committed Aug 25, 2020
2 parents 1acd6d1 + 5a732c3 commit b6451b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [^6.0, ^7.0]
laravel: [^6.0, ^7.0, ^8.0]
exclude:
- php: 7.2
laravel: ^8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"require": {
"php": "^7.2",
"ext-json": "*",
"illuminate/contracts": "^6.9|^7.0",
"illuminate/database": "^6.9|^7.0",
"illuminate/support": "^6.9|^7.0"
"illuminate/contracts": "^6.9|^7.0|^8.0",
"illuminate/database": "^6.9|^7.0|^8.0",
"illuminate/support": "^6.9|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^4.0|^5.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
Expand Down

0 comments on commit b6451b3

Please sign in to comment.