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