From 339f10bad1d3766cf97533eb86477878d91bf7c5 Mon Sep 17 00:00:00 2001 From: Kostadin Bashev Date: Sat, 16 Mar 2024 12:13:13 +0200 Subject: [PATCH] Compatibility with Magento >=2.4.7-beta3 Magento Framework requires (not explicitly) psr/log >= 2.0, current requirement can block update of the magento core function which will cause critical error. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2365635..fb9411f 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "magento/module-config": "^101.0.0|^101.1.0", "magento/module-store": "^101.0.0", "magento/module-page-cache": "^100.0", - "psr/log": "^1.0", + "psr/log": "^1 || ^2 || ^3", "php": ">=7.4.0", "ext-dom": "*", "ext-pcre": "*",