@@ -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=4.4 --full
57+ $ symfony new my_project_directory --version=4.4 --full
5858
5959 # run this if you are building a microservice, console application or API
60- $ symfony new my_project_name --version=4.4
60+ $ symfony new my_project_directory --version=4.4
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,13 +69,13 @@ 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:"^4.4" my_project_name
72+ $ composer create-project symfony/website-skeleton:"^4.4" my_project_directory
7373
7474 # run this if you are building a microservice, console application or API
75- $ composer create-project symfony/skeleton:"^4.4" my_project_name
75+ $ composer create-project symfony/skeleton:"^4.4" my_project_directory
7676
7777 No matter which command you run to create the Symfony application. All of them
78- will create a new ``my_project_name / `` directory, download some dependencies
78+ will create a new ``my_project_directory / `` directory, download some dependencies
7979into it and even generate the basic directories and files you'll need to get
8080started. In other words, your new application is ready!
8181
@@ -258,20 +258,20 @@ stable version. If you want to use an LTS version, add the ``--version`` option:
258258.. code-block :: terminal
259259
260260 # use the most recent LTS version
261- $ symfony new my_project_name --version=lts
261+ $ symfony new my_project_directory --version=lts
262262
263263 # use the 'next' Symfony version to be released (still in development)
264- $ symfony new my_project_name --version=next
264+ $ symfony new my_project_directory --version=next
265265
266266 # you can also select an exact specific Symfony version
267- $ symfony new my_project_name --version=4.4
267+ $ symfony new my_project_directory --version=4.4
268268
269269 The ``lts `` and ``next `` shortcuts are only available when using Symfony to
270270create new projects. If you use Composer, you need to tell the exact version:
271271
272272.. code-block :: terminal
273273
274- $ composer create-project symfony/skeleton:"^4.4" my_project_name
274+ $ composer create-project symfony/skeleton:"^4.4" my_project_directory
275275
276276 The Symfony Demo application
277277----------------------------
@@ -284,7 +284,7 @@ Run this command to create a new project based on the Symfony Demo application:
284284
285285.. code-block :: terminal
286286
287- $ symfony new my_project_name --demo
287+ $ symfony new my_project_directory --demo
288288
289289 Start Coding!
290290-------------
0 commit comments