From 778886ec93c15b756e8747b4909a08e012d2ab40 Mon Sep 17 00:00:00 2001 From: Pacha Cervantes Date: Thu, 10 Jun 2021 07:10:06 -0500 Subject: [PATCH] Add compatibility to newer Versions of Laravel (#95) Allow to install with Laravel 6+ and to use Guzzle 7 --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 1e7e3ff..ee92a87 100644 --- a/composer.json +++ b/composer.json @@ -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",