We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Simple API to read config values from YAML files.
If you have a yaml file like this (atest_config depends on at_base)
# at_base/tests/atest_config/config/config.yml foo: bar
You can read foo value with this code:
echo at_config('atest_config')->get('foo'); // bar
Yaml file can import data from other files:
imports: - { resource: to_be_imported.yml } foo: bar