We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Its currently not possible to use packages that require symfony/finder in version >= 5.0.
I can not find any reason in your repository not to allow symfon/finder in version ~5.0, so I suggest to allow the version 5 in composer.json
something like this (note this is JUST an example, also note that this is output from composer version 1, due to an older Magento 2 project. )
"Your requirements could not be resolved to an installable set of packages." # ... "Can only install one of: symfony/finder[v5.1.0, v4.4.25]."
in composer.json:
composer.json
"require-dev": { ... "symfony/finder": "~4.0||~5.0" },
or if possible:
"require-dev": { ... "symfony/finder": "~5.0" },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary of problem or feature request
Its currently not possible to use packages that require symfony/finder in version >= 5.0.
I can not find any reason in your repository not to allow symfon/finder in version ~5.0, so I suggest to allow the version 5 in composer.json
Code snippet of problem
something like this (note this is JUST an example, also note that this is output from composer version 1, due to an older Magento 2 project. )
Code snippet of suggestion
in
composer.json
:or if possible:
System details
The text was updated successfully, but these errors were encountered: