diff --git a/setup.rst b/setup.rst index 64b0a6ecc07..fc101258ed3 100644 --- a/setup.rst +++ b/setup.rst @@ -44,10 +44,10 @@ application: .. code-block:: terminal # run this if you are building a traditional web application - $ symfony new my_project_name --full + $ symfony new my_project_name --version=4.4 --full # run this if you are building a microservice, console application or API - $ symfony new my_project_name + $ symfony new my_project_name --version=4.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 @@ -59,10 +59,10 @@ Symfony application using Composer: .. code-block:: terminal # run this if you are building a traditional web application - $ composer create-project symfony/website-skeleton my_project_name + $ composer create-project symfony/website-skeleton:v4.4.99 my_project_name # run this if you are building a microservice, console application or API - $ composer create-project symfony/skeleton my_project_name + $ composer create-project symfony/skeleton:v4.4.99 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