Repository abandoned 2019-12-31This repository has moved to laminas/laminas-config-aggregator.
Aggregates and merges configuration, from a variety of formats. Supports caching for fast bootstrap in production environments.
The standalone ConfigAggregator
can be used to merge PHP-based configuration files:
use Zend\ConfigAggregator\ConfigAggregator; use Zend\ConfigAggregator\PhpFileProvider; $aggregator = new ConfigAggregator([ new PhpFileProvider('*.global.php'), ]); var_dump($aggregator->getMergedConfig());
Using this provider, each file should return a PHP array:
// db.global.php return [ 'db' => [ 'dsn' => 'mysql:...', ], ]; // cache.global.php return [ 'cache_storage' => 'redis', 'redis' => [ ... ], ];
Result:
array(3) { 'db' => array(1) { 'dsn' => string(9) "mysql:..." } 'cache_storage' => string(5) "redis" 'redis' => array(0) { ... } }
Configuration is merged in the same order as it is passed, with later entries having precedence.
Together with zend-config
, zend-config-aggregator
can be also used to load configuration in different formats, including YAML, JSON, XML, or INI:
use Zend\ConfigAggregator\ConfigAggregator; use Zend\ConfigAggregator\ZendConfigProvider; $aggregator = new ConfigAggregator([ new ZendConfigProvider('config/*.{json,yaml,php}'), ]);
For more details, please refer to the documentation.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4