File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ application:
49
49
.. code-block :: terminal
50
50
51
51
# run this if you are building a traditional web application
52
- $ symfony new my_project_directory --version=' 6.0.*' --webapp
52
+ $ symfony new my_project_directory --version=" 6.0.*" --webapp
53
53
54
54
# run this if you are building a microservice, console application or API
55
- $ symfony new my_project_directory --version=' 6.0.*'
55
+ $ symfony new my_project_directory --version=" 6.0.*"
56
56
57
57
The only difference between these two commands is the number of packages
58
58
installed by default. The ``--webapp `` option installs all the packages that you
@@ -273,7 +273,7 @@ stable version. If you want to use an LTS version, add the ``--version`` option:
273
273
$ symfony new my_project_directory --version=next
274
274
275
275
# you can also select an exact specific Symfony version
276
- $ symfony new my_project_directory --version=' 5.4.*'
276
+ $ symfony new my_project_directory --version=" 5.4.*"
277
277
278
278
The ``lts `` and ``next `` shortcuts are only available when using Symfony to
279
279
create new projects. If you use Composer, you need to tell the exact version:
You can’t perform that action at this time.
0 commit comments