openclerk / config
Installs: 476
Dependents: 18
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
Open Issues: 0
pkg:composer/openclerk/config
This package is auto-updated.
Last update: 2025-10-14 11:43:06 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");