Skip to content

Commit 778886e

Browse files
authored
Add compatibility to newer Versions of Laravel (#95)
Allow to install with Laravel 6+ and to use Guzzle 7
1 parent 5ef70cc commit 778886e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
}
1919
],
2020
"require": {
21-
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
22-
"illuminate/routing": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
23-
"illuminate/console": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
24-
"illuminate/view": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
25-
"illuminate/broadcasting": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
26-
"illuminate/queue": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
21+
"illuminate/support": ">=5.4.0",
22+
"illuminate/routing": ">=5.4.0",
23+
"illuminate/console": ">=5.4.0",
24+
"illuminate/view": ">=5.4.0",
25+
"illuminate/broadcasting": ">=5.4.0",
26+
"illuminate/queue": ">=5.4.0",
2727
"php": ">=5.6.4",
28-
"guzzlehttp/guzzle": "^6.0"
28+
"guzzlehttp/guzzle": "^6.0|^7.0"
2929
},
3030
"require-dev": {
3131
"phpunit/phpunit": "~5.0",

0 commit comments

Comments
 (0)