From e30513189ea1e15772e389639c369c0234112ac5 Mon Sep 17 00:00:00 2001 From: Toby Griffiths Date: Wed, 1 Nov 2023 16:09:39 +0000 Subject: [PATCH] Require guzzlehttp/psr7 >= 1.7.0 for Util class The PodioClient class depends on the `\GuzzleHttp\Psr7\Utils` class, however this was not included in the existing requirements, since the `guzzlehttp/guzzle` requirement of `>=6.2.0` only requires `guzzlehttp/psr7:~1.1`, so this will cause a "Class not found" error when attempting to load the Util class. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 3ed4770..551310c 100644 --- a/composer.json +++ b/composer.json @@ -24,6 +24,7 @@ "require": { "php": "^7.3 || ^8.0", "guzzlehttp/guzzle": ">=6.2.0", + "guzzlehttp/psr7": ">=1.7.0", "ext-json": "*" }, "suggest": {