Skip to content

Commit a9a6f77

Browse files
committed
Update examples to symfony 7.2
1 parent cb331fb commit a9a6f77

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

contributing/code/pull_requests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ work:
132132
branch (you can find them on the `Symfony releases page`_). E.g. if you
133133
found a bug introduced in ``v5.1.10``, you need to work on ``5.4``.
134134

135-
* ``7.1``, if you are adding a new feature.
135+
* ``7.2``, if you are adding a new feature.
136136

137137
The only exception is when a new :doc:`major Symfony version </contributing/community/releases>`
138138
(5.0, 6.0, etc.) comes out every two years. Because of the

contributing/code/tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tests, such as Doctrine, Twig and Monolog. To do so,
3232

3333
.. code-block:: terminal
3434
35-
$ COMPOSER_ROOT_VERSION=7.1.x-dev composer update
35+
$ COMPOSER_ROOT_VERSION=7.2.x-dev composer update
3636
3737
.. _running:
3838

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.1.*" --webapp
51+
$ symfony new my_project_directory --version="7.2.*" --webapp
5252
5353
# run this if you are building a microservice, console application or API
54-
$ symfony new my_project_directory --version="7.1.*"
54+
$ symfony new my_project_directory --version="7.2.*"
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.1.*" my_project_directory
66+
$ composer create-project symfony/skeleton:"7.2.*" 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.1.*" my_project_directory
71+
$ composer create-project symfony/skeleton:"7.2.*" 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)