Skip to content

Commit ea51aeb

Browse files
committed
bug #4926 Finish #4505: Fixed composer create-project command (windows) (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)
2 parents c24c787 + e2efc6b commit ea51aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ version as the second argument of the ``create-project`` command:
135135

136136
.. code-block:: bash
137137
138-
$ composer create-project symfony/framework-standard-edition my_project_name '2.3.*'
138+
$ composer create-project symfony/framework-standard-edition my_project_name "2.3.*"
139139
140140
.. tip::
141141

0 commit comments

Comments
 (0)