From 5fce96e11e1759717eab71d31b022e1e0bed2cb3 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 4 Jan 2018 13:19:16 +0100 Subject: [PATCH 1/2] Reworded the setup article about using other versions --- setup.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.rst b/setup.rst index c1cd8ba62df..a3d8984e3d0 100644 --- a/setup.rst +++ b/setup.rst @@ -25,7 +25,9 @@ In other words, your new app is ready! .. tip:: - You can also download a specific version of Symfony: + New projects are based by default on the latest Symfony stable version, but + you can select other version if needed (read about the + :doc:`Symfony version release process `): .. code-block:: terminal @@ -35,9 +37,6 @@ In other words, your new app is ready! # use a beta or RC version (useful for testing new Symfony versions) $ composer create-project symfony/skeleton my-project 4.0.0-BETA1 - Some version are long-term support (LTS) versions. Read the :doc:`Symfony Release process ` - to learn more. - Running your Symfony Application -------------------------------- From 9a4c157d6c0f5070e8ef317660a3d7f6c3eae963 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 4 Jan 2018 15:26:32 +0100 Subject: [PATCH 2/2] Removed the section about specific versions --- setup.rst | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/setup.rst b/setup.rst index a3d8984e3d0..6b83f2f6730 100644 --- a/setup.rst +++ b/setup.rst @@ -23,20 +23,6 @@ This will create a new ``my-project`` directory, download some dependencies into it and even generate the basic directories and files you'll need to get started. In other words, your new app is ready! -.. tip:: - - New projects are based by default on the latest Symfony stable version, but - you can select other version if needed (read about the - :doc:`Symfony version release process `): - - .. code-block:: terminal - - # use the most recent version in any Symfony branch - $ composer create-project symfony/skeleton my-project "4.0.*" - - # use a beta or RC version (useful for testing new Symfony versions) - $ composer create-project symfony/skeleton my-project 4.0.0-BETA1 - Running your Symfony Application --------------------------------