File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ application:
44
44
.. code-block :: terminal
45
45
46
46
# run this if you are building a traditional web application
47
- $ symfony new my_project_name --full
47
+ $ symfony new my_project_name --version=4.4 -- full
48
48
49
49
# run this if you are building a microservice, console application or API
50
- $ symfony new my_project_name
50
+ $ symfony new my_project_name --version=4.4
51
51
52
52
The only difference between these two commands is the number of packages
53
53
installed by default. The ``--full `` option installs all the packages that you
@@ -59,10 +59,10 @@ Symfony application using Composer:
59
59
.. code-block :: terminal
60
60
61
61
# run this if you are building a traditional web application
62
- $ composer create-project symfony/website-skeleton my_project_name
62
+ $ composer create-project symfony/website-skeleton:v4.4.99 my_project_name
63
63
64
64
# run this if you are building a microservice, console application or API
65
- $ composer create-project symfony/skeleton my_project_name
65
+ $ composer create-project symfony/skeleton:v4.4.99 my_project_name
66
66
67
67
No matter which command you run to create the Symfony application. All of them
68
68
will create a new ``my_project_name/ `` directory, download some dependencies
You can’t perform that action at this time.
0 commit comments