Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 306 Bytes

README.markdown

File metadata and controls

27 lines (19 loc) · 306 Bytes

Requirements

  • 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']);

?>