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