From aaf06cd57cdf729ad079abaa8587bcb643a6d946 Mon Sep 17 00:00:00 2001 From: ziming Date: Sun, 23 Aug 2026 17:27:23 +0800 Subject: [PATCH 1/2] Allow Guzzle 8 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4626f630..67d76225 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "homepage": "https://github.com/saloonphp/saloon", "require": { "php": "^8.2", - "guzzlehttp/guzzle": "^7.6", + "guzzlehttp/guzzle": "^7.6 || ^8.0", "guzzlehttp/promises": "^1.5 || ^2.0", "guzzlehttp/psr7": "^2.0", "psr/http-factory": "^1.0", From e012fc5b083deeedfcd19cb859ecf4b73e9d4f3f Mon Sep 17 00:00:00 2001 From: ziming Date: Tue, 25 Aug 2026 17:20:39 +0800 Subject: [PATCH 2/2] Allow guzzlehttp/promises & guzzlehttp/psr7 ^3.0 too --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 67d76225..c6c78b1e 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,8 @@ "require": { "php": "^8.2", "guzzlehttp/guzzle": "^7.6 || ^8.0", - "guzzlehttp/promises": "^1.5 || ^2.0", - "guzzlehttp/psr7": "^2.0", + "guzzlehttp/promises": "^1.5 || ^2.0 || ^3.0", + "guzzlehttp/psr7": "^2.0 || ^3.0", "psr/http-factory": "^1.0", "psr/http-message": "^1.1 || ^2.0" },