Skip to content

Commit

Permalink
Update version constraints in composer.json
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mesilov committed Apr 11, 2024
1 parent f554364 commit ef0e0c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
Expand Down

0 comments on commit ef0e0c6

Please sign in to comment.