An extensible configuration manager for PHP projects.
Get started managing your configurations.
- Array access
- Dot notation access
- Configurations cache
- Auto driver detection
- Runtime modification
composer require unity/config
You have the follow configuration file: configs/db.php in your project folder containing the bellow configurations:
<?php
return [
'user' => 'root',
'psw' => 'toor',
'db' => 'example',
'host' => 'localhost'
];
and you want to manage these configurations, thats what you need to do:
<?php
require "vendor/autoload.php";
$config = (new ConfigManager())
->setSource('configs')
->build();
Now, to access a configuration you can use the $config->get()
, e.g.:
echo $config->get('db.user');
Or in a more simple way, using array access:
echo $config['db']['user'];
Both methods will have the same output:
root
Ask your self, is it easy???
We will be really thankful if you make a fork, make your changes and send a pull request!
The Unity/Config is licensed under the MIT license. See license file for more information.