@@ -347,7 +347,7 @@ configuration file using a special syntax: wrap the parameter name in two ``%``
347
347
.. note ::
348
348
349
349
If some parameter value includes the ``% `` character, you need to escape it
350
- by adding another ``% `` so Symfony doesn't consider it a reference to a
350
+ by adding another ``% ``, so Symfony doesn't consider it a reference to a
351
351
parameter name:
352
352
353
353
.. configuration-block ::
@@ -409,17 +409,18 @@ The files stored in ``config/packages/`` are used by Symfony to configure the
409
409
the application behavior by changing which configuration files are loaded.
410
410
That's the idea of Symfony's **configuration environments **.
411
411
412
- A typical Symfony application begins with three environments: ``dev `` (for local
413
- development), ``prod `` (for production servers) and ``test `` (for
414
- :doc: `automated tests </testing >`). When running the application, Symfony loads
412
+ A typical Symfony application begins with three environments:
413
+ * ``dev `` for local development,
414
+ * ``prod `` for production servers,
415
+ * ``test `` for :doc: `automated tests </testing >`.
416
+ When running the application, Symfony loads
415
417
the configuration files in this order (the last files can override the values
416
418
set in the previous ones):
417
419
418
- #. ``config/packages/*.yaml `` (and ``*.xml `` and ``*.php `` files too);
419
- #. ``config/packages/<environment-name>/*.yaml `` (and ``*.xml `` and ``*.php `` files too);
420
- #. ``config/services.yaml `` (and ``services.xml `` and ``services.php `` files too);
421
- #. ``config/services_<environment-name>.yaml `` (and ``services_<environment-name>.xml ``
422
- and ``services_<environment-name>.php `` files too).
420
+ #. The files in ``config/packages/*.<extension> ``;
421
+ #. the files in ``config/packages/<environment-name>/*.<extension> ``;
422
+ #. ``config/services.<extension> ``;
423
+ #. ``config/services_<environment-name>.<extension> ``.
423
424
424
425
Take the ``framework `` package, installed by default, as an example:
425
426
0 commit comments