From 02daba0438b7cfd1e78350ff543e60df9cc50ff0 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 19 Oct 2015 11:22:31 +0200 Subject: [PATCH] Mentioned the BETA and RC support for the Symfony Installer --- book/installation.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/book/installation.rst b/book/installation.rst index 809fc914800..580425ed6fd 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -98,17 +98,17 @@ optional second argument of the ``new`` command: $ symfony new my_project_name 2.3.26 $ symfony new my_project_name 2.6.5 -If you want your project to be based on the latest :ref:`Symfony LTS version `, -pass ``lts`` as the second argument of the ``new`` command: + # use a beta or RC version (useful for testing new Symfony versions) + $ symfony new my_project 2.7.0-BETA1 + $ symfony new my_project 2.7.0-RC1 + +The installer also supports a special version called ``lts`` which installs the +most recent :ref:`Symfony LTS version ` available: .. code-block:: bash - # Linux, Mac OS X $ symfony new my_project_name lts - # Windows - c:\projects\> php symfony 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.