@@ -54,10 +54,10 @@ application:
5454.. code-block :: terminal
5555
5656 # run this if you are building a traditional web application
57- $ symfony new my_project_name --version="5.4.x" --full
57+ $ symfony new my_project_name --version=5.3 --full
5858
5959 # run this if you are building a microservice, console application or API
60- $ symfony new my_project_name --version="5.4.x"
60+ $ symfony new my_project_name --version=5.3
6161
6262 The only difference between these two commands is the number of packages
6363installed by default. The ``--full `` option installs all the packages that you
@@ -69,10 +69,10 @@ Symfony application using Composer:
6969.. code-block :: terminal
7070
7171 # run this if you are building a traditional web application
72- $ composer create-project symfony/website-skeleton:"5.4.x " my_project_name
72+ $ composer create-project symfony/website-skeleton:"^5.3 " my_project_name
7373
7474 # run this if you are building a microservice, console application or API
75- $ composer create-project symfony/skeleton:"5.4.x " my_project_name
75+ $ composer create-project symfony/skeleton:"^5.3 " my_project_name
7676
7777 No matter which command you run to create the Symfony application. All of them
7878will create a new ``my_project_name/ `` directory, download some dependencies
@@ -278,7 +278,7 @@ create new projects. If you use Composer, you need to tell the exact version:
278278
279279.. code-block :: terminal
280280
281- $ composer create-project symfony/website- skeleton:"^5.4" my_project_name
281+ $ composer create-project symfony/skeleton:"^5.4" my_project_name
282282
283283 The Symfony Demo application
284284----------------------------
0 commit comments