@@ -53,10 +53,10 @@ application:
53
53
.. code-block :: terminal
54
54
55
55
# run this if you are building a traditional web application
56
- $ symfony new my_project_name --version=5.3 --full
56
+ $ symfony new my_project_directory --version=5.3 --full
57
57
58
58
# run this if you are building a microservice, console application or API
59
- $ symfony new my_project_name --version=5.3
59
+ $ symfony new my_project_directory --version=5.3
60
60
61
61
The only difference between these two commands is the number of packages
62
62
installed by default. The ``--full `` option installs all the packages that you
@@ -68,13 +68,13 @@ Symfony application using Composer:
68
68
.. code-block :: terminal
69
69
70
70
# run this if you are building a traditional web application
71
- $ composer create-project symfony/website-skeleton:"^5.3" my_project_name
71
+ $ composer create-project symfony/website-skeleton:"^5.3" my_project_directory
72
72
73
73
# run this if you are building a microservice, console application or API
74
- $ composer create-project symfony/skeleton:"^5.3" my_project_name
74
+ $ composer create-project symfony/skeleton:"^5.3" my_project_directory
75
75
76
76
No matter which command you run to create the Symfony application. All of them
77
- will create a new ``my_project_name / `` directory, download some dependencies
77
+ will create a new ``my_project_directory / `` directory, download some dependencies
78
78
into it and even generate the basic directories and files you'll need to get
79
79
started. In other words, your new application is ready!
80
80
@@ -260,20 +260,20 @@ stable version. If you want to use an LTS version, add the ``--version`` option:
260
260
.. code-block :: terminal
261
261
262
262
# use the most recent LTS version
263
- $ symfony new my_project_name --version=lts
263
+ $ symfony new my_project_directory --version=lts
264
264
265
265
# use the 'next' Symfony version to be released (still in development)
266
- $ symfony new my_project_name --version=next
266
+ $ symfony new my_project_directory --version=next
267
267
268
268
# you can also select an exact specific Symfony version
269
- $ symfony new my_project_name --version=5.4
269
+ $ symfony new my_project_directory --version=5.4
270
270
271
271
The ``lts `` and ``next `` shortcuts are only available when using Symfony to
272
272
create new projects. If you use Composer, you need to tell the exact version:
273
273
274
274
.. code-block :: terminal
275
275
276
- $ composer create-project symfony/skeleton:"^5.4" my_project_name
276
+ $ composer create-project symfony/skeleton:"^5.4" my_project_directory
277
277
278
278
The Symfony Demo application
279
279
----------------------------
@@ -286,7 +286,7 @@ Run this command to create a new project based on the Symfony Demo application:
286
286
287
287
.. code-block :: terminal
288
288
289
- $ symfony new my_project_name --demo
289
+ $ symfony new my_project_directory --demo
290
290
291
291
Start Coding!
292
292
-------------
0 commit comments