From ded0b4db8566b8d9b08755866072b3b923938b2b Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 24 Apr 2023 13:30:50 +0100 Subject: [PATCH 1/2] Correct version constraints --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index fa61a9dfb..73eef2a81 100644 --- a/composer.json +++ b/composer.json @@ -12,11 +12,11 @@ } ], "require": { - "php": ">=7.1.0" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "guzzlehttp/guzzle": "^6.3 || ^7.0", - "phpunit/phpunit": ">=7.0 < 10" + "guzzlehttp/guzzle": "^7.5.1", + "phpunit/phpunit": "^8.5.33 || ^9.6.7" }, "suggest": { "guzzlehttp/guzzle": "An HTTP client to execute the API requests" @@ -35,4 +35,4 @@ "config": { "lock": false } -} \ No newline at end of file +} From 9fec88703170b01b373c312b49e246ab5d544262 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 24 Apr 2023 13:40:43 +0100 Subject: [PATCH 2/2] Add explicit require for psr7 --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 73eef2a81..0375710a1 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,7 @@ }, "require-dev": { "guzzlehttp/guzzle": "^7.5.1", + "guzzlehttp/psr7": "^2.4.5", "phpunit/phpunit": "^8.5.33 || ^9.6.7" }, "suggest": {