From b87889292f3352fcb1196ba4833a7b61412d311e 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 52b79df7f90..14b6003e662 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 f7644f84ff7d3c4a8f7e0c33d7d834885f0de6fb 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 14b6003e662..b9b261095c4 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