Skip to content

Commit

Permalink
Add compatibility to newer Versions of Laravel (#95)
Browse files Browse the repository at this point in the history
Allow to install with Laravel 6+ and to use Guzzle 7
  • Loading branch information
pacharrin committed Jun 10, 2021
1 parent 5ef70cc commit 778886e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
}
],
"require": {
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/routing": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/console": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/view": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/broadcasting": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/queue": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": ">=5.4.0",
"illuminate/routing": ">=5.4.0",
"illuminate/console": ">=5.4.0",
"illuminate/view": ">=5.4.0",
"illuminate/broadcasting": ">=5.4.0",
"illuminate/queue": ">=5.4.0",
"php": ">=5.6.4",
"guzzlehttp/guzzle": "^6.0"
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
Expand Down

0 comments on commit 778886e

Please sign in to comment.