From 8caf716b49c5643e62df7ec9076a739ffcca013b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Fri, 15 Dec 2017 17:55:16 +0100 Subject: [PATCH] Stop mentioning that flex can install specific symfony version --- setup.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.rst b/setup.rst index b2d0380abb4..af29a71479d 100644 --- a/setup.rst +++ b/setup.rst @@ -25,15 +25,15 @@ In other words, your new app is ready! .. tip:: - You can also download a specific version of Symfony: + You can also specify which major version of Symfony will be downloaded: .. code-block:: terminal - # use the most recent version in any Symfony branch - $ composer create-project symfony/skeleton my-project "3.3.*" + # use the most recent Symfony 3.* version + $ composer create-project symfony/skeleton my-project "3.*" # use a beta or RC version (useful for testing new Symfony versions) - $ composer create-project symfony/skeleton my-project 3.3.0-BETA1 + $ composer create-project symfony/skeleton my-project "^4@beta" Some version are long-term support (LTS) versions. Read the :doc:`Symfony Release process ` to learn more.