Hi seems like I have found an issue with symfony/flex regarding * version constraint.
Problem:
Having the following requirements:
{
"require": {
"php": ">=8.2",
"symfony/flex": "^2.3.2",
"symfony/framework-bundle": "~6.3.2",
}
}
Running the following command will fail as symfony/flex takes the version from symfony/framework-bundle to replace any * version inside the pack.
composer req symfony/serializer-pack
Problem here symfony/property-info does not have a version 6.3.2 so the installation failes.
When I remove symfony/flex and simply require property-info with * everything works fine and version v6.3 is installed.
Hi seems like I have found an issue with
symfony/flexregarding*version constraint.Problem:
Having the following requirements:
Running the following command will fail as symfony/flex takes the version from
symfony/framework-bundleto replace any*version inside the pack.Problem here
symfony/property-infodoes not have a version6.3.2so the installation failes.When I remove
symfony/flexand simply require property-info with*everything works fine and versionv6.3is installed.