From 1463e4fab015215412bcb6855602f2bd64bde4bf Mon Sep 17 00:00:00 2001 From: Matt Styles Date: Wed, 3 Mar 2021 11:50:30 -0700 Subject: [PATCH] GH-27: Allow the package to be used with guzzlehttp/guzzle v7 In order to increase compatibility with other packages, updated the composer requirements to allow consumers to use either Guzzle 6 or 7. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cea0a81b..5a29b856 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "minimum-stability": "stable", "require": { "ext-json": "*", - "guzzlehttp/guzzle": "^6.3", + "guzzlehttp/guzzle": "^6.3|^7.0", "php": "~7.1", "symfony/filesystem": ">=2.3", "symfony/process": ">=3.3",