From c10e3d807bc675b99203ca8fdb9549bf60745d99 Mon Sep 17 00:00:00 2001 From: BahmanMD Date: Thu, 2 Dec 2021 10:15:28 +0330 Subject: [PATCH] Update setup.rst (Symfony 5.4) --- setup.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.rst b/setup.rst index c795feab42e..bd8e018da8f 100644 --- a/setup.rst +++ b/setup.rst @@ -54,10 +54,10 @@ application: .. code-block:: terminal # run this if you are building a traditional web application - $ symfony new my_project_name --version=5.3 --full + $ symfony new my_project_name --version=5.4 --full # run this if you are building a microservice, console application or API - $ symfony new my_project_name --version=5.3 + $ symfony new my_project_name --version=5.4 The only difference between these two commands is the number of packages installed by default. The ``--full`` option installs all the packages that you @@ -69,10 +69,10 @@ Symfony application using Composer: .. code-block:: terminal # run this if you are building a traditional web application - $ composer create-project symfony/website-skeleton:"^5.3" my_project_name + $ composer create-project symfony/website-skeleton:"^5.4" my_project_name # run this if you are building a microservice, console application or API - $ composer create-project symfony/skeleton:"^5.3" my_project_name + $ composer create-project symfony/skeleton:"^5.4" my_project_name No matter which command you run to create the Symfony application. All of them will create a new ``my_project_name/`` directory, download some dependencies