From 1589b5f3f6105012095b7abc57bbb0db79285c2b Mon Sep 17 00:00:00 2001 From: Epskampie Date: Thu, 20 Nov 2014 14:46:17 +0100 Subject: [PATCH] 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: 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. --- book/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/installation.rst b/book/installation.rst index 4e625492a00..e117756eaf6 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -135,7 +135,7 @@ version as the second argument of the ``create-project`` command: .. code-block:: bash - $ composer create-project symfony/framework-standard-edition my_project_name '2.3.*' + $ composer create-project symfony/framework-standard-edition my_project_name "2.3.*" .. tip::