Skip to content

Extensible configuration manager for PHP projects that uses dot notation and supports json, ini, array based and many more common formats

License

Notifications You must be signed in to change notification settings

unity-framework/Config

Repository files navigation

Unity/Config

An extensible configuration manager for PHP projects.

Get started managing your configurations.

Features

  • Array access
  • Dot notation access
  • Configurations cache
  • Auto driver detection
  • Runtime modification

Supported drivers

Installation

composer require unity/config

Usage

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???

Contributing

We will be really thankful if you make a fork, make your changes and send a pull request!

Credits

License

The Unity/Config is licensed under the MIT license. See license file for more information.

About

Extensible configuration manager for PHP projects that uses dot notation and supports json, ini, array based and many more common formats

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages