openclerk/config

There is no license information available for the latest version (0.1.1) of this package.

0.1.1 2015-03-18 00:27 UTC

This package is auto-updated.

Last update: 2024-04-14 08:28:27 UTC


README

A library for configuration management in Openclerk.

Installing

Include openclerk/config as a requirement in your project composer.json, and run composer update to install it into your project:

{
  "require": {
    "openclerk/config": "dev-master"
  },
  "repositories": [{
    "type": "vcs",
    "url": "https://github.com/openclerk/config"
  }]
}

Using

Initialise configuration before use:

Openclerk\Config::merge(array(
  "database_name" => "clerk",
  "database_username" => "username",
  "database_password" => "password",
  // any other values here
));

You can now load configuration values at runtime:

echo Openclerk\Config::get("my_key", "default");