Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 521 Bytes

File metadata and controls

39 lines (25 loc) · 521 Bytes

Config

Config - configuration parser - somewhere between ZF1 and ZF2, sections with include ...

Install

Using Composer and Packagist

composer require g4/config

Usage

$config = new G4\Config\Config();

$data = $config
    ->setCachePath(__DIR__)
    ->setSection('local')
    ->setPath('config.ini')
    ->getData();

Development

Install dependencies

$ make install

Run tests

$ make test

License

(The MIT License) see LICENSE file for details...