From 8e41e734ad4f3a7c8ec7706a2f3ea04b635d4d3c Mon Sep 17 00:00:00 2001 From: Antoine Makdessi Date: Fri, 20 Feb 2015 15:43:44 +0100 Subject: [PATCH 1/2] Minor improvement for symfony-installer with LTS based on the symfony-installer PR https://github.com/symfony/symfony-installer/pull/105 --- book/installation.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/book/installation.rst b/book/installation.rst index e117756eaf6..8dbfa169af9 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -98,6 +98,17 @@ number as the second argument of the ``new`` command: # Windows c:\projects\> php symfony.phar new my_project_name 2.3.23 +If you want your project to be based on the last Symfony LTS version, pass +``lts`` as the second argument of the ``new`` command: + +.. code-block:: bash + + # Linux, Mac OS X + $ symfony new my_project_name lts + + # Windows + c:\projects\> php symfony.phar new my_project_name lts + Read the :doc:`Symfony Release process ` to better understand why there are several Symfony versions and which one to use for your projects. From 18c08f340bbe650efc08f8c7e533fc466d1e1e9a Mon Sep 17 00:00:00 2001 From: Antoine Makdessi Date: Mon, 2 Mar 2015 13:21:21 +0100 Subject: [PATCH 2/2] Better wording --- book/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/installation.rst b/book/installation.rst index 8dbfa169af9..64894725fda 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -98,7 +98,7 @@ number as the second argument of the ``new`` command: # Windows c:\projects\> php symfony.phar new my_project_name 2.3.23 -If you want your project to be based on the last Symfony LTS version, pass +If you want your project to be based on the latest Symfony LTS version, pass ``lts`` as the second argument of the ``new`` command: .. code-block:: bash