File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ application:
50
50
.. code-block :: terminal
51
51
52
52
# run this if you are building a traditional web application
53
- $ symfony new my_project_name --full
53
+ $ symfony new my_project_name --version=5.1 -- full
54
54
55
55
# run this if you are building a microservice, console application or API
56
- $ symfony new my_project_name
56
+ $ symfony new my_project_name --version=5.1
57
57
58
58
The only difference between these two commands is the number of packages
59
59
installed by default. The ``--full `` option installs all the packages that you
@@ -65,10 +65,10 @@ Symfony application using Composer:
65
65
.. code-block :: terminal
66
66
67
67
# run this if you are building a traditional web application
68
- $ composer create-project symfony/website-skeleton my_project_name
68
+ $ composer create-project symfony/website-skeleton:"5.1.*" my_project_name
69
69
70
70
# run this if you are building a microservice, console application or API
71
- $ composer create-project symfony/skeleton my_project_name
71
+ $ composer create-project symfony/skeleton:"5.1.*" my_project_name
72
72
73
73
No matter which command you run to create the Symfony application. All of them
74
74
will create a new ``my_project_name/ `` directory, download some dependencies
You can’t perform that action at this time.
0 commit comments