Skip to content

Commit 57a10dd

Browse files
committed
minor #20483 [Setup] Update 7.2.x-dev to 7.2.x (leo29plns)
This PR was merged into the 7.2 branch. Discussion ---------- [Setup] Update 7.2.x-dev to 7.2.x This is my very first contribution to open-source world, so I might be wrong. Since version 7.2 was released in November 2024, we no longer need the `-dev` suffix for new installations. I apologize in advance if this change doesn't make any sense or if it was already planned :/ Commits ------- f10c7e9 Update 7.2.x-dev to 7.2.x
2 parents 9687b2e + f10c7e9 commit 57a10dd

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
@@ -48,10 +48,10 @@ application:
4848
.. code-block:: terminal
4949
5050
# run this if you are building a traditional web application
51-
$ symfony new my_project_directory --version="7.2.x-dev" --webapp
51+
$ symfony new my_project_directory --version="7.2.x" --webapp
5252
5353
# run this if you are building a microservice, console application or API
54-
$ symfony new my_project_directory --version="7.2.x-dev"
54+
$ symfony new my_project_directory --version="7.2.x"
5555
5656
The only difference between these two commands is the number of packages
5757
installed by default. The ``--webapp`` option installs extra packages to give
@@ -63,12 +63,12 @@ Symfony application using Composer:
6363
.. code-block:: terminal
6464
6565
# run this if you are building a traditional web application
66-
$ composer create-project symfony/skeleton:"7.2.x-dev" my_project_directory
66+
$ composer create-project symfony/skeleton:"7.2.x" my_project_directory
6767
$ cd my_project_directory
6868
$ composer require webapp
6969
7070
# run this if you are building a microservice, console application or API
71-
$ composer create-project symfony/skeleton:"7.2.x-dev" my_project_directory
71+
$ composer create-project symfony/skeleton:"7.2.x" my_project_directory
7272
7373
No matter which command you run to create the Symfony application. All of them
7474
will create a new ``my_project_directory/`` directory, download some dependencies

0 commit comments

Comments
 (0)