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 @@ -46,10 +46,10 @@ application:
46
46
.. code-block :: terminal
47
47
48
48
# run this if you are building a traditional web application
49
- $ symfony new my_project_directory --version="6.3.* " --webapp
49
+ $ symfony new my_project_directory --version="6.4.*@dev " --webapp
50
50
51
51
# run this if you are building a microservice, console application or API
52
- $ symfony new my_project_directory --version="6.3.* "
52
+ $ symfony new my_project_directory --version="6.4.*@dev "
53
53
54
54
The only difference between these two commands is the number of packages
55
55
installed by default. The ``--webapp `` option installs all the packages that you
@@ -61,12 +61,12 @@ Symfony application using Composer:
61
61
.. code-block :: terminal
62
62
63
63
# run this if you are building a traditional web application
64
- $ composer create-project symfony/skeleton:"6.3.* " my_project_directory
64
+ $ composer create-project symfony/skeleton:"6.4.*@dev " my_project_directory
65
65
$ cd my_project_directory
66
66
$ composer require webapp
67
67
68
68
# run this if you are building a microservice, console application or API
69
- $ composer create-project symfony/skeleton:"6.3.* " my_project_directory
69
+ $ composer create-project symfony/skeleton:"6.4.*@dev " my_project_directory
70
70
71
71
No matter which command you run to create the Symfony application. All of them
72
72
will create a new ``my_project_directory/ `` directory, download some dependencies
You can’t perform that action at this time.
0 commit comments