From f65e8bd177d2ac4c7dc52b9e837d3be9dc7e173f Mon Sep 17 00:00:00 2001 From: iq-cw <118896224+iq-cw@users.noreply.github.com> Date: Mon, 15 Jan 2024 14:29:16 +0100 Subject: [PATCH] Update lcobucci/jwt version constraint Adjust the version constraint for lcobucci/jwt to ">=4.2.0 <4.3.0" in the composer.json file. This ensures that we include any version from the 4.2.X range while explicitly excluding version 4.3.0. This change is made to maintain compatibility, because as of 4.3.0 lcobucci/jwt requires "lcobucci/clock": "^2.0 || ^3.0", so lcobucci/clock > 3 is installed, which in turn requires "php": "~8.2.0 || ~8.3.0". However, Akeneo requires 8.1 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 27fb4081f9d1..42a81226fafa 100644 --- a/composer.json +++ b/composer.json @@ -100,7 +100,7 @@ "guzzlehttp/guzzle": "^7.5.0", "imagine/imagine": "1.3.3", "khaled.alshamaa/ar-php": "^6.2", - "lcobucci/jwt": "^4.2", + "lcobucci/jwt": ">=4.2.0 <4.3.0", "league/flysystem": "^3.11.0", "liip/imagine-bundle": "2.10.0", "maennchen/zipstream-php": "^2.4.0",