From e3c521eddbd1b2f08f7b8a03cbb9908db4d36185 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Thu, 22 Oct 2020 16:40:55 +0200 Subject: [PATCH] Remove broken composer provide rule This package does not provide the interfaces of psr/cache but only an implementation of the interfaces. Providing the wrong package while also requiring it creates issues with Composer 2, because the solver will consider that installing psr/cache is not necessary as it is already provided. --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index e4b637f..892b9c3 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,6 @@ } }, "provide": { - "psr/cache": "^1.0.1", "psr/cache-implementation": "1.0" }, "license": "MIT"