Download the PHP package monomelodies/kingconf without Composer
On this page you can find all versions of the php package monomelodies/kingconf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download monomelodies/kingconf
More information about monomelodies/kingconf
Files in monomelodies/kingconf
Package kingconf
Short Description Load configuration in any sane format
License MIT
Informations about the package kingconf
Kingconf
Load configuration in any sane format
Some prefer JSON, some prefer YAML. Some even prefer XML... why not allow them all and let the user decide?
Kingconf
loads configuration from any of the following formats:
json
: A JSON as a key/value store.yaml
: A Yaml file.xml
: An XML file. It should contain a root element which can be called anything.ini
: The PHP .ini format.php
: Plain ol' PHP (return ['key' => 'value']
format).
Installation
Composer (recommended)
Manual
- Download or clone the repository somewhere;
- Add
/path/to/kingconf/src
to your autoloader for PSR-4 namespaceMonomelodies\\Kingconf\\
.
Usage
Create a Monomelodies\Kingconf\Config
object with one or more config file
paths as the constructor arguments:
Note that the first value found is leading, i.e. if in the above example the
JSON defines foo = bar
and the ini foo = baz
, foo
will remain bar
.
The resulting $config
object simply extends PHP's ArrayObject
, so you can
access it like any other array:
Errors and exceptions
Kingconf will throw exceptions if config files can't be read, contain invalid syntax etc. So, if you can't be sure about the contents (e.g. user submitted data) be sure to wrap the constructor in a try/catch block:
Note that user submitted configuration is probably best handled in a different manner though...
All Kingconf exceptions extend
Monomelodies\Kingconf\Exception
, which in turn extendsDomainException
.