kachit/config

Simple config management library

1.1 2018-05-23 10:35 UTC

This package is not auto-updated.

Last update: 2024-05-03 21:01:18 UTC


README

License Build Status Latest Stable Version Total Downloads

<?php

$reader = new Kachit\Config\Reader\Php();
$manager = new Kachit\Config\Manager($reader);

$config = $manager->read('/path/to/config/file');

$bar = $config->foo->bar;