steroid / config
Steroid Config
v1.1.1
2015-05-29 08:04 UTC
Requires (Dev)
- jolicode/jolici: dev-master
- phpunit/phpunit: 4.0.*
- satooshi/php-coveralls: ~0.6@stable
- squizlabs/php_codesniffer: 2.*
This package is not auto-updated.
Last update: 2025-03-29 20:21:45 UTC
README
Installation:
"steroid/config": "~1.0"
Usage:
Config::setCacheDirectory($cache_directory); $config = Config::instance()->load('config.txt'); $locale = $config->get('dev.locale'); $locale = Config::instance()->get('dev.locale');
Setting a root, usual if you defined roots in your config to separate dev and production or any other separation, all calls to the config will be prefixed with root. Root can be set in bootstrap when config is initialized.
$config = Config::instance()->setRoot('dev'); $locale = $config->get('locale'); $locale = Config::instance()->get('locale');
Config file syntax:
Documentation is still far from defined, all supported config's are listed and explained shortly in tests/files
Changelog:
v1.1.1 - Refactored parser
v1.1.0 - Added support for config roots - Added multiline support with filter support - More complete tests and config files with all supported syntaxes
v1.0.1 - The instance multione also creates an instance if not already created
v1.0.0 - Initial version