Skip to content

Commit 7de4a30

Browse files
committed
Add support for Laravel 8
1 parent f802ed1 commit 7de4a30

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php: ['7.4']
14-
laravel: ['5.8', '6.0', '7.0']
14+
laravel: ['5.8', '6.0', '7.0', '8.0']
1515
include:
16+
- laravel: '8.0'
17+
testbench: '6.0'
1618
- laravel: '7.0'
1719
testbench: '5.2'
1820
- laravel: '6.0'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/build
22
/vendor
33

4+
/.phpunit.result.cache
45
/composer.lock
56
/google-service-account.json
67
/phpunit.xml

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
],
1313
"require": {
1414
"php": "^7.2",
15-
"kreait/firebase-php": "^5.0",
16-
"illuminate/contracts": "^5.8|^6.0|^7.0",
17-
"illuminate/support": "^5.8|^6.0|^7.0"
15+
"kreait/firebase-php": "^5.8.1",
16+
"illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
17+
"illuminate/support": "^5.8|^6.0|^7.0|^8.0"
1818
},
1919
"require-dev": {
20-
"laravel/lumen-framework": "^5.8|^6.0|^7.0",
21-
"orchestra/testbench": "^3.8.6|^4.8|^5.2",
20+
"laravel/lumen-framework": "^5.8|^6.0|^7.0|^8.0",
21+
"orchestra/testbench": "^3.8.6|^4.8|^5.2|^6.0",
2222
"roave/better-reflection": "^3.6|^4.6"
2323
},
2424
"autoload": {

0 commit comments

Comments
 (0)