Skip to content

Commit 961a11a

Browse files
committed
minor #17497 Fix version in setup command (StaffNowa)
This PR was merged into the 6.2 branch. Discussion ---------- Fix version in setup command setup.rst symfony version fix Commits ------- 1b07595 setup version fix
2 parents c32cfa9 + 1b07595 commit 961a11a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ application:
4949
.. code-block:: terminal
5050
5151
# run this if you are building a traditional web application
52-
$ symfony new my_project_directory --version="6.2.*@dev" --webapp
52+
$ symfony new my_project_directory --version="6.2.*" --webapp
5353
5454
# run this if you are building a microservice, console application or API
55-
$ symfony new my_project_directory --version="6.2.*@dev"
55+
$ symfony new my_project_directory --version="6.2.*"
5656
5757
The only difference between these two commands is the number of packages
5858
installed by default. The ``--webapp`` option installs all the packages that you
@@ -64,12 +64,12 @@ Symfony application using Composer:
6464
.. code-block:: terminal
6565
6666
# run this if you are building a traditional web application
67-
$ composer create-project symfony/skeleton:"6.2.*@dev" my_project_directory
67+
$ composer create-project symfony/skeleton:"6.2.*" my_project_directory
6868
$ cd my_project_directory
6969
$ composer require webapp
7070
7171
# run this if you are building a microservice, console application or API
72-
$ composer create-project symfony/skeleton:"6.2.*@dev" my_project_directory
72+
$ composer create-project symfony/skeleton:"6.2.*" my_project_directory
7373
7474
No matter which command you run to create the Symfony application. All of them
7575
will create a new ``my_project_directory/`` directory, download some dependencies

0 commit comments

Comments
 (0)