Skip to content
This repository was archived by the owner on Nov 9, 2020. It is now read-only.

Commit 4dc8a09

Browse files
committed
Establish compatibility with Laravel 6
1 parent 4185aaa commit 4dc8a09

File tree

4 files changed

+1024
-970
lines changed

4 files changed

+1024
-970
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/vendor/
2+
.phpunit.result.cache

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
],
1212
"require": {
1313
"guzzlehttp/guzzle": "~6.0",
14-
"illuminate/queue": "^5.7 >=5.7.7",
15-
"illuminate/support": "^5.7 >=5.7.7",
16-
"illuminate/contracts": "^5.7 >=5.7.7",
17-
"illuminate/routing": "^5.7 >=5.7.7"
14+
"illuminate/queue": "^5.7 >=5.7.7 | ^6.0",
15+
"illuminate/support": "^5.7 >=5.7.7 | ^6.0",
16+
"illuminate/contracts": "^5.7 >=5.7.7 | ^6.0",
17+
"illuminate/routing": "^5.7 >=5.7.7 | ^6.0"
1818
},
1919
"autoload": {
2020
"psr-4": {
@@ -37,8 +37,8 @@
3737
}
3838
},
3939
"require-dev": {
40-
"phpunit/phpunit": "^7.4",
40+
"phpunit/phpunit": "^8.0",
4141
"mockery/mockery": "^1.2",
42-
"laravel/laravel": "^5.7 >=5.7.7"
42+
"laravel/laravel": "^5.7 >=5.7.7 | ^6.0"
4343
}
4444
}

0 commit comments

Comments
 (0)