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 ¶
- Caching based on Resourcesリソースに基づくキャッシング
- Defining and Processing Configuration Values構成値の定義と処理
- Loading Resourcesリソースのロード
- How to Create Friendly Configuration for a Bundleバンドルのフレンドリ構成を作成する方法
- How to Load Service Configuration inside a Bundleバンドル内にサービス構成をロードする方法
- How to Simplify Configuration of Multiple Bundles複数のバンドルの構成を簡素化する方法