When I try to execute the following command
composer create-project symfony/framework-standard-edition project_name '2.7'
the composer returns this error:
[UnexpectedValueException]
Could not parse version constraint '2.7': Invalid version string "'2.7'"
You must install without single cats:
composer create-project symfony/framework-standard-edition project_name 2.7
Pablo source
share