-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Fixed composer create-project command (windows) #4505
New issue
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
Conversation
The composer create-project command as it was doesn't work on windows because of the single astrophes ' . The error returned is: Could not parse version constraint '2.5.*': Invalid version string "'2.5.*'" This is resolved by switching to double astrophes ". The new command is verified to work on ubuntu linux as well.
Thanks for investigating this @Epskampie! Could you please also update the use of |
The composer create-project command as it was doesn't work on windows because of the single astrophes ' . The error returned is: Could not parse version constraint '2.5.*': Invalid version string "'2.5.*'" This is resolved by switching to double astrophes ". The new command is verified to work on ubuntu linux as well.
Of course, I've added the change to I noticed that the command in the 2.3 branch mentions symfony 2.5, but that is another issue. |
@Epskampie First, I want to wish you a happy new year! Unfortunately, the |
@Epskampie Is there a specific reason you closed your pull request? |
A few reasons:
|
@Epskampie Sure, no worries. :) I finished your work in #4926. Thank you for contributing to the Symfony docs! |
…s) (Epskampie) This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #4926). Discussion ---------- Finish #4505: Fixed composer create-project command (windows) | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | #4505 The composer create-project command as it was doesn't work on windows because of the single astrophes ' . The error returned is: Could not parse version constraint '2.5.*': Invalid version string "'2.5.*'" This is resolved by switching to double astrophes ". The new command is verified to work on ubuntu linux as well. Commits ------- e2efc6b Fixed composer create-project command (windows)
The composer create-project command as it was doesn't work on windows because of the single astrophes ' . The error returned is:
This is resolved by switching to double astrophes ". The new command is verified to work on ubuntu linux as well.