chronos/simpleconfig

Configuration library for PHP

1.0.0 2015-03-15 23:51 UTC

This package is not auto-updated.

Last update: 2024-11-09 18:06:22 UTC


README

Build StatusScrutinizer Code Quality

SimpleConfig is a configuration library for PHP. Has support for single or multiple file configurations. Aims to be a simple library for basic configuration needs.

Usage

SimpleConfig can be installed via composer: chronos/simpleconfig.

$config = new FileConfig("Path/to/file");

$value = $config->get("app.host");