ytake / hh-config-aggregator
Aggregate and merge configuration
Package info
github.com/ytake/hh-config-aggregator
Language:Hack
pkg:composer/ytake/hh-config-aggregator
Fund package maintenance!
0.10.0
2020-06-26 06:10 UTC
Requires
- hhvm: ^4.62
- hhvm/hhvm-autoload: ^3.0
- hhvm/hsl: ^4.0
- hhvm/hsl-experimental: ^4.25
Requires (Dev)
- facebook/fbexpect: ^2.7.3
- hhvm/hacktest: ^2.0.0
- hhvm/hhast: ^4.0.0
README
Aggregates and merges configuration, Supports caching for fast bootstrap in production environments.
zendframework/zend-config-aggregator converted for hack
Installation
$ composer require ytake/hh-config-aggregator
Usage
use type Ytake\HHConfigAggreagator\ArrayProvider; use type Ytake\HHConfigAggreagator\ConfigAggreagator; use type Ytake\HHConfigAggreagator\PhpFileProvider; $aggregator = new ConfigAggreagator( vec[ new PhpFileProvider( __DIR__.'/resources/config/{{,*.}global,{,*.}local}.{hack,hackpartial}', ), new ArrayProvider(['config_cache_enabled' => true]) ], __DIR__.'/resources/cached.config.cache.hackpartial' ); $aggregator->getMergedConfig();