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).

Config コンポーネントは、ソースが何であれ (YAML、XML、INI ファイル、またはデータベースなど)、あらゆる種類の構成値を検索、ロード、結合、入力、および検証するのに役立ついくつかのクラスを提供します。

Installation

1
$ composer require symfony/config

Note

ノート

If you install this component outside of a Symfony application, you must require the vendor/autoload.php file in your code to enable the class autoloading mechanism provided by Composer. Read this article for more details.

このコンポーネントを Symfony アプリケーションの外部にインストールする場合は、Composer が提供するクラス自動ロード メカニズムを有効にするために、コード内に vendor/autoload.php ファイルを必要とする必要があります。詳細については、この記事をお読みください。

Learn More