Manage configuration for a commandline tool.
This component is designed to provide the components needed to manage configuration options from different sources, including:
- Commandline options
- Configuration files
- Alias files (special configuration files that identify a specific target site)
- Default values (provided by command)
Symfony Console is used to provide the framework for the commandline tool, and the Symfony Configuration component is used to load and merge configuration files. This project provides the glue that binds the components together in an easy-to-use package.
If your goal is to be able to quickly write configurable commandline tools, you might want to consider using Robo as a Framework, as the work for setting up this component is already done in that project. Consolidation/Config may be used with any Symfony Console application, though.
In use in Robo, Terminus and Drush.
Provide a simple Config class that can be injected where needed to provide configuration values in non-command classes, and make configuration settings a no-op for command classes by automatically initializing the Input object from configuration as needed.
Configuration files are simple hierarchical yaml files.
Command options are defined by creating an entry for each command name under the command:
section of the configuration file. The options for the command should be defined within an options:
section. For example, to set a configuration value red
for the option --color
in the example
command:
command:
example:
options:
color: red
If a command name contains a :
, then each section of the command name defines another level of hierarchy in the command option configuration. For example, to set a configuration value George
for the option --name
of the command my:foo
:
command:
my:
foo:
options:
name: George
Furthermore, every level of the command name hierarchy may contain options. For example, to define a configuration value for the option --dir
for any command that begins with my:
:
command:
my:
options:
dir: '/base/path'
foo:
options:
name: George
bar:
options:
priority: high
If your Symfony Console application defines global options, like so (from a method in an extension of the Application class):
$this->getDefinition()
->addOption(
new InputOption('--simulate', null, InputOption::VALUE_NONE, 'Run in simulated mode (show what would have happened).')
);
Default values for global options can then be declared in the global options section:
options:
simulate: false
If this is done, then global option values set on the command line will be used to alter the value of the configuration item at runtime. For example, $config->get('options.simulate')
will return false
when the --simulate
global option is not used, and will return true
when it is.
See the section "Set Up Command Option Configuration Injection", below, for instructions on how to enable this setup.
It is possible to define values in a configuration file that will be substituted in wherever used. For example:
common:
path: '/shared/path'
command:
my:
options:
dir: '${common.path}'
foo:
options:
name: George
grasmash/yaml-expander is used to provide this capability.
The easiest way to utilize the capabilities of this project is to use Robo as a framework to create your commandline tools. Using Robo is optional, though, as this project will work with any Symfony Console application.
Consolidation/config includes a built-in yaml loader / processor. To use it directly, use a YamlConfigLoader to load each of your configuration files, and a ConfigProcessor to merge them together. Then, export the result from the configuration processor, and import it into a Config object.
use Consolidation\Config\Config;
use Consolidation\Config\YamlConfigLoader;
use Consolidation\Config\ConfigProcessor;
$config = new Config();
$loader = new YamlConfigLoader();
$processor = new ConfigProcessor();
$processor->extend($loader->load('defaults.yml'));
$processor->extend($loader->load('myconf.yml'));
$config->import($processor->export());
The command option configuration feature described above in the section Providing Command Options
is provided via a configuration injection class. All that you need to do to use this feature as attach this object to your Symfony Console application's event dispatcher:
$application = new Symfony\Component\Console\Application($name, $version);
$configInjector = new \Consolidation\Config\Inject\ConfigForCommand($config);
$configInjector->setApplication($application);
$eventDispatcher = new \Symfony\Component\EventDispatcher\EventDispatcher();
$eventDispatcher->addSubscriber($configInjector);
$application->setDispatcher($eventDispatcher);
If you have a configuration file that looks like this:
a:
b:
c: foo
Then you can fetch the value of the configuration option c
via:
$value = $config->get('a.b.c');
dflydev/dot-access-data is leveraged to provide this capability.
Interpolation allows configuration values to be injected into a string with tokens. The tokens are used as keys that are looked up in the config object; the resulting configuration values will be used to replace the tokens in the provided string.
For example, using the same configuration file shown above:
$result = $config->interpolate('The value is: {{a.b.c}}')
In this example, the $result
string would be:
The value is: foo
Optionally, you may use the ConfigOverlay class to combine multiple configuration objects implamenting ConfigInterface into a single, prioritized configuration object. It is not necessary to use a configuration overlay; if your only goal is to merge configuration from multiple files, you may follow the example above to extend a processor with multiple configuration files, and then import the result into a single configuration object. This will cause newer configuration items to overwrite any existing values stored under the same key.
A configuration overlay can achieve the same end result without overwriting any config values. The advantage of doing this is that different configuration overlays could be used to create separate "views" on different collections of configuration. A configuration overlay is also useful if you wish to temporarily override some configuration values, and then put things back the way they were by removing the overlay.
use Consolidation\Config\Config;
use Consolidation\Config\YamlConfigLoader;
use Consolidation\Config\ConfigProcessor;
use Consolidation\Config\Util\ConfigOverlay;
$config1 = new Config();
$config2 = new Config();
$loader = new YamlConfigLoader();
$processor = new ConfigProcessor();
$processor->extend($loader->load('c1.yml'));
$config1->import($processor->export());
$processor = new ConfigProcessor();
$processor->extend($loader->load('c2.yml'));
$config2->import($processor->export());
$configOverlay = (new ConfigOverlay())
->addContext('one', $config1)
->addContext('two', $config2);
$value = $configOverlay->get('key');
$configOverlay->removeContext('two');
$value = $configOverlay->get('key');
The first call to $configOverlay->get('key')
, above, will return the value from key
in $config2
, if it exists, or from $config1
otherwise. The second call to the same function, after $config2
is removed, will only consider configuration values stored in $config1
.
The Symfony Config component provides the capability to locate configuration file, load them from either YAML or XML sources, and validate that they match a certain defined schema. Classes to find configuration files are also available.
If these features are needed, the results from Symfony\Component\Config\Definition\Processor::processConfiguration()
may be provided directly to the Consolidation\Config\Config::import()
method.
Robo provides a facility for configuration files to define default values for task setter methods. This is done via the ConfigForSetters::apply()
method.
$taskClass = static::configClassIdentifier($taskClass);
$configurationApplier = new \Consolidation\Config\Inject\ConfigForSetters($this->getConfig(), $taskClass, 'task.');
$configurationApplier->apply($task, 'settings');
The configClassIdentifier
method converts \
-separated class and namespace names into .
-separated identifiers; it is provided by ConfigAwareTrait:
protected static function configClassIdentifier($classname)
{
$configIdentifier = strtr($classname, '\\', '.');
$configIdentifier = preg_replace('#^(.*\.Task\.|\.)#', '', $configIdentifier);
return $configIdentifier;
}
A similar pattern may be used in other applications that may wish to inject values into objects using their setter methods.
Drush has an existing procedural mechanism for loading configuration values from multiple files, and overlaying the results in priority order. Command-specific options from configuration files and site aliases may also be applied.