From ef0e0c6d08223498541300eae8e6e513f6d44461 Mon Sep 17 00:00:00 2001 From: mesilov Date: Thu, 11 Apr 2024 20:19:07 +0600 Subject: [PATCH] Update version constraints in composer.json The commit updates the version constraints for multiple packages in composer.json, making them more flexible by allowing both current and one previous major version. This should ease package updates and compatibility issues in the future. Signed-off-by: mesilov --- composer.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 4081f549..18458c2f 100644 --- a/composer.json +++ b/composer.json @@ -25,15 +25,15 @@ "ext-bcmath": "*", "ext-curl": "*", "ext-intl": "*", - "psr/log": "3.0.*", + "psr/log": "^2 || ˆ3", "fig/http-message-util": "1.1.*", - "ramsey/uuid": "4.7.*", - "moneyphp/money": "4.5.*", - "symfony/http-client": "7.0.*", - "symfony/http-client-contracts": "3.4.*", - "symfony/http-foundation": "7.0.*", - "symfony/event-dispatcher": "7.0.*", - "symfony/uid": "7.0.*" + "ramsey/uuid": "^3 ||^4", + "moneyphp/money": "^3 || ^4", + "symfony/http-client": "^6 || ^7", + "symfony/http-client-contracts": "^2 || ^3", + "symfony/http-foundation": "^6 || ^7", + "symfony/event-dispatcher": "^6 || ^7", + "symfony/uid": "^6 || ^7" }, "require-dev": { "monolog/monolog": "3.5.*",