Skip to content

Commit

Permalink
Add support for Laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Sep 8, 2020
1 parent f802ed1 commit 7de4a30
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
fail-fast: false
matrix:
php: ['7.4']
laravel: ['5.8', '6.0', '7.0']
laravel: ['5.8', '6.0', '7.0', '8.0']
include:
- laravel: '8.0'
testbench: '6.0'
- laravel: '7.0'
testbench: '5.2'
- laravel: '6.0'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/build
/vendor

/.phpunit.result.cache
/composer.lock
/google-service-account.json
/phpunit.xml
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
],
"require": {
"php": "^7.2",
"kreait/firebase-php": "^5.0",
"illuminate/contracts": "^5.8|^6.0|^7.0",
"illuminate/support": "^5.8|^6.0|^7.0"
"kreait/firebase-php": "^5.8.1",
"illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0"
},
"require-dev": {
"laravel/lumen-framework": "^5.8|^6.0|^7.0",
"orchestra/testbench": "^3.8.6|^4.8|^5.2",
"laravel/lumen-framework": "^5.8|^6.0|^7.0|^8.0",
"orchestra/testbench": "^3.8.6|^4.8|^5.2|^6.0",
"roave/better-reflection": "^3.6|^4.6"
},
"autoload": {
Expand Down

0 comments on commit 7de4a30

Please sign in to comment.