Clarify the purpose of the Config component

This commit is contained in:
Javier Eguiluz
2024-07-16 10:13:11 +02:00
parent 1e880ca1d0
commit 0b4c3781e8

View File

@@ -1,9 +1,17 @@
The Config Component
====================
The Config component provides several classes to help you find, load,
combine, fill and validate configuration values of any kind, whatever
their source may be (YAML, XML, INI files, or for instance a database).
The Config component provides utilities to define and manage the configuration
options of PHP applications. It allows you to:
* Define a configuration structure, its validation rules, default values and documentation;
* Support different configuration formats (YAML, XML, INI, etc.);
* Merge multiple configurations from different sources into a single configuration.
.. note::
You don't have to use this component to configure Symfony applications.
Instead, read the docs about :doc:`how to configure Symfony applications </configuration>`.
Installation
------------