From 5d00d54a60b1ff878a07b7ef0bd721340c61e01f Mon Sep 17 00:00:00 2001 From: Danny Kopping Date: Tue, 5 Aug 2014 16:49:34 +0200 Subject: [PATCH 1/2] See #4091 --- cookbook/workflow/new_project_git.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/workflow/new_project_git.rst b/cookbook/workflow/new_project_git.rst index 574c7d5915e..580b3807cc7 100644 --- a/cookbook/workflow/new_project_git.rst +++ b/cookbook/workflow/new_project_git.rst @@ -24,7 +24,7 @@ git repository: .. code-block:: bash - $ php composer.phar create-project symfony/framework-standard-edition path/ ~2.3 + $ php composer.phar create-project symfony/framework-standard-edition path/ '~2.3' Composer will now download the Standard Distribution along with all of the required vendor libraries. For more information about downloading Symfony using From 780a5197963dbe1e49571a04dab95d12c7c13dd8 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Tue, 5 Aug 2014 15:15:43 -0400 Subject: [PATCH 2/2] Wrapping create-project in strings on different versions --- book/installation.rst | 2 +- quick_tour/the_big_picture.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/installation.rst b/book/installation.rst index 548bca0ddd7..6c64823f059 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -57,7 +57,7 @@ Distribution: .. code-block:: bash - $ php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.3.* + $ php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony '2.3.*' .. tip:: diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index 7922ffdda7e..5c4c9293190 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -18,7 +18,7 @@ directory: .. code-block:: bash - $ composer create-project symfony/framework-standard-edition myproject/ ~2.4 + $ composer create-project symfony/framework-standard-edition myproject/ '~2.4' .. note::