Avoid incompatibility with symfony/console 7#52923
Merged
fabpot merged 1 commit intosymfony:5.4from Dec 8, 2023
jdecool:fix-console-conflict
Merged
Avoid incompatibility with symfony/console 7#52923fabpot merged 1 commit intosymfony:5.4from jdecool:fix-console-conflict
fabpot merged 1 commit intosymfony:5.4from
jdecool:fix-console-conflict
Conversation
stof
approved these changes
Dec 8, 2023
fabpot
approved these changes
Dec 8, 2023
Member
|
Thank you @jdecool. |
Member
|
Not sure how helpful this change actually is as Composer could simply stick with FrameworkBundle 5.4.32 or lower and still install version 7 of the Console component. |
This was referenced Dec 30, 2023
Merged
Merged
Merged
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The FrameworkBundle has no constraint on the
symfony/consolecomponent.So a project can have a
composer.jsonsimilar to this one:{ "require": { "php": ">=8.1", "ext-ctype": "*", "ext-iconv": "*", "symfony/console": "^7.0", "symfony/framework-bundle": "5.4.*" }, }Using this configuration, it will install the console component in version 7.0.1 and the framework in 5.4.32.
But this error will occur:
So I suggest to add a
conflictto avoid this issue.