mtymek / expressive-config-manager

Lightweight library for merging and caching application config
30 stars 4 forks source link

Support for ZendConfig #6

Closed mtymek closed 8 years ago

mtymek commented 8 years ago

This patch adds optional support for loading XML/INI/YAML/JSON configuration, based on zendframework/zend-config.

Example usage:

$configManager = new ConfigManager(
    [
        new ZendConfigProvider('*.global.json'),
        new ZendConfigProvider('database.local.ini')
    ]
);