@@ -18,22 +18,21 @@ directory, which has this default structure:
18
18
│ ├─ bundles.php
19
19
│ ├─ routes.yaml
20
20
│ └─ services.yaml
21
- ├─ ...
22
21
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.
27
26
28
- You'll be working mostly in the ``config/packages/ `` directory. This directory
27
+ The ``config/packages/ `` directory
29
28
stores the configuration of every package i
CF5C
nstalled in your application.
30
29
Packages (also called "bundles" in Symfony and "plugins/modules" in other
31
30
projects) add ready-to-use features to your projects.
32
31
33
32
When using :ref: `Symfony Flex <symfony-flex >`, which is enabled by default in
34
33
Symfony applications, packages update the ``bundles.php `` file and create new
35
34
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 :
37
36
38
37
.. code-block :: yaml
39
38
@@ -42,9 +41,9 @@ example, this is the default file created by the "API Platform" package:
42
41
mapping :
43
42
paths : ['%kernel.project_dir%/src/Entity']
44
43
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
46
45
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.
48
47
49
48
.. tip ::
50
49
0 commit comments