Skip to content

Commit

Permalink
Merge pull request #415 from laravel/laravel8
Browse files Browse the repository at this point in the history
[8.x] Laravel 8 support
  • Loading branch information
driesvints authored Aug 25, 2020
2 parents 060bd8f + 88e66cc commit 53517ab
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 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
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
],
"require": {
"php": "^7.2",
"illuminate/bus": "^6.0|^7.0",
"illuminate/contracts": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/http": "^6.0|^7.0",
"illuminate/pagination": "^6.0|^7.0",
"illuminate/queue": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0"
"illuminate/bus": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/pagination": "^6.0|^7.0|^8.0",
"illuminate/queue": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^2.2",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0"
"phpunit/phpunit": "^8.0|^9.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 53517ab

Please sign in to comment.