From d1c245bf87b22d158819237734a5d7a867c67d77 Mon Sep 17 00:00:00 2001 From: Diadal Date: Sun, 8 Aug 2021 07:02:05 +0100 Subject: [PATCH] guzzlehttp/psr7 2.0 support ` Problem 1 - beyondcode/laravel-websockets[1.12.0, ..., 1.x-dev] require guzzlehttp/psr7 ^1.5 -> found guzzlehttp/psr7[1.5.0, ..., 1.x-dev] but the package is fixed to 2.0.0 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command. - Root composer.json requires beyondcode/laravel-websockets ^1.12 -> satisfiable by beyondcode/laravel-websockets[1.12.0, 1.x-dev]. Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.` --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4ca7275acd..98193a5a4a 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ "doctrine/dbal": "^2.9", "evenement/evenement": "^2.0|^3.0", "facade/ignition-contracts": "^1.0", - "guzzlehttp/psr7": "^1.5", + "guzzlehttp/psr7": "^1.5|^2.0", "illuminate/broadcasting": "^6.3|^7.0|^8.0", "illuminate/console": "^6.3|^7.0|^8.0", "illuminate/http": "^6.3|^7.0|^8.0",