You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
I tried to add support for Symfony 4 requiring "symfony/symfony": "^3.0 | ^4.0", but this doesn't work if the Symfony 4 project is using Symfony Flex since this one conflicts with "symfony/symfony": "*".
This is because in Symfony Flex you are not supposed to require the whole framework, but individual components.
Maybe the requirement on symfony/symfony can be changed in favor of symfony/framework-bundle? Would that be enough?
Hi there!
I tried to add support for Symfony 4 requiring
"symfony/symfony": "^3.0 | ^4.0", but this doesn't work if the Symfony 4 project is using Symfony Flex since this one conflicts with"symfony/symfony": "*".This is because in Symfony Flex you are not supposed to require the whole framework, but individual components.
Maybe the requirement on
symfony/symfonycan be changed in favor ofsymfony/framework-bundle? Would that be enough?Thanks!