From bc3a3b3fd263f36b5ac6e4efcd081d436a7ef814 Mon Sep 17 00:00:00 2001 From: alies-lptn <150333538+lptn@users.noreply.github.com> Date: Sun, 13 Oct 2024 23:32:07 +0200 Subject: [PATCH 1/2] Update composer.json: allow using fresh versions --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f928865..eb21617 100644 --- a/composer.json +++ b/composer.json @@ -40,8 +40,8 @@ "mockery/mockery": "^1.5" }, "require": { - "guzzlehttp/guzzle": "7.5", - "vlucas/phpdotenv": "5.5", + "guzzlehttp/guzzle": "^7.5", + "vlucas/phpdotenv": "^5.5", "bayfrontmedia/php-mime-types": "^2.0", "league/uri": "^6.0" } From 3b7a9a071f49c358aac4b8131837abe33fa3df4d Mon Sep 17 00:00:00 2001 From: alies-lptn <150333538+lptn@users.noreply.github.com> Date: Sun, 13 Oct 2024 23:40:13 +0200 Subject: [PATCH 2/2] Alllow using league/url v7 the package doesn't use functionality that removed or marked as BC breaks --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index eb21617..09db741 100644 --- a/composer.json +++ b/composer.json @@ -43,6 +43,6 @@ "guzzlehttp/guzzle": "^7.5", "vlucas/phpdotenv": "^5.5", "bayfrontmedia/php-mime-types": "^2.0", - "league/uri": "^6.0" + "league/uri": "^6.0 || ^7.0" } }