kachit/config

Simple config management library

Maintainers

Details

github.com/Kachit/config

Source

Issues

Installs: 7 826

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kachit/config

1.1 2018-05-23 10:35 UTC

This package is not auto-updated.

Last update: 2025-10-18 03:38:51 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;