Skip to content

Commit

Permalink
Merge pull request #201 from laravel/laravel8
Browse files Browse the repository at this point in the history
[2.x] Support Laravel 8
  • Loading branch information
driesvints authored Aug 25, 2020
2 parents cef9cf0 + c4e6af4 commit f37f0c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"symfony/console": "^4.3|^5.0",
"symfony/process": "^4.3|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
"phpunit/phpunit": "^8.0|^9.0"
},
"suggest": {
"ext-posix": "Required to determine the System user on Unix systems."
Expand Down

0 comments on commit f37f0c1

Please sign in to comment.