8000 Minor rewordings · symfony/symfony-docs@23593c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 23593c6

Browse files
Minor rewordings
1 parent 422bf52 commit 23593c6

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

configuration.rst

Lines changed: 8 additions & 9 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.
2726

28-
You'll be working mostly in the ``config/packages/`` directory. This directory
27+
The ``config/packages/`` directory
2928
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)
0