codin / config
Basic config file load supports PHP ans Json files
0.1.0
2020-08-22 14:45 UTC
Requires
- php: >=7.3
Requires (Dev)
- friendsofphp/php-cs-fixer: @stable
- phpspec/phpspec: @stable
- phpstan/phpstan: @stable
This package is auto-updated.
Last update: 2024-10-28 19:28:59 UTC
README
Lightweight configuration file loader that supports PHP and JSON files
$ cat path/to/config/foos.php <?php return ['foo' => 'bar']; $ cat path/to/config/bars.json {"bar":"baz"}
$config = Codin\Config\Config::create('path/to/config'); $config->has('foos.foo'); // true $config->get('foos.foo'); // "bar" $config->has('bars'); // true $config->get('bars'); // ['bar' => 'baz']