Skip to content

Commit 21888e7

Browse files
committed
Merge branch '6.2' into 6.3
* 6.2: Minor rewordings
2 parents 8d5f549 + 71993da commit 21888e7

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

configuration.rst

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,21 @@ directory, which has this default structure:
1818
│ ├─ bundles.php
1919
│ ├─ routes.yaml
2020
│ └─ services.yaml
21-
├─ ...
2221
23-
The ``routes.yaml`` file defines the :doc:`routing configuration </routing>`;
24-
the ``services.yaml`` file configures the services of the
25-
:doc:`service container </service_container>`; the ``bundles.php`` file enables/
26-
disables packages in your application.
22+
* The ``routes.yaml`` file defines the :doc:`routing configuration </routing>`;
23+
* The ``services.yaml`` file configures the services of the
24+
:doc:`service container </service_container>`;
25+
* The ``bundles.php`` file enables/disables packages in your application;
26+
* The ``config/packages/`` directory stores the configuration of every package
27+
installed in your application.
2728

28-
You'll be working mostly in the ``config/packages/`` directory. This directory
29-
stores the configuration of every package installed in your application.
3029
Packages (also called "bundles" in Symfony and "plugins/modules" in other
3130
projects) add ready-to-use features to your projects.
3231

3332
When using :ref:`Symfony Flex <symfony-flex>`, which is enabled by default in
3433
Symfony applications, packages update the ``bundles.php`` file and create new
3534
files in ``config/packages/`` automatically during their installation. For
36-
example, this is the default file created by the "API Platform" package:
35+
example, this is the default file created by the "API Platform" bundle:
3736

3837
.. code-block:: yaml
3938
@@ -42,9 +41,9 @@ example, this is the default file created by the "API Platform" package:
4241
mapping:
4342
paths: ['%kernel.project_dir%/src/Entity']
4443
45-
Splitting the configuration into lots of small files is intimidating for some
44+
Splitting the configuration into lots of small files might appear intimidating for some
4645
Symfony newcomers. However, you'll get used to them quickly and you rarely need
47-
to change these files after package installation
46+
to change these files after package installation.
4847

4948
.. tip::
5049

0 commit comments

Comments
 (0)