epic/config

New config for our projects

dev-master 2015-08-06 10:46 UTC

This package is not auto-updated.

Last update: 2024-04-17 08:19:43 UTC


README

  • PHP 5.5+

Installation

Add the plugin to your project's composer.json:

  {
    "require": {
      "epic/config": "dev-master"
    }
  }

Usage

Create a new loader:

<?php
$config = new \Epic\Config(['path/to/.env']);
var_dump($config['param']);

?>