Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lefuturiste/config

Simple config library for php
https://github.com/lefuturiste/config

Last synced: 4 days ago
JSON representation

Simple config library for php

Awesome Lists containing this project

README

        

# config

Simple config library for php

-------------------------------------------------

### Dependecies

- PHP >= 5.3
- vlucas/phpdotenv : lasted version

-------------------------------------------------

## 1. Installing

Easy install via composer. Still no idea what composer is? Inform yourself [here](http://getcomposer.org).

```composer require lefuturiste/config```

-------------------------------------------------

## 2. Usage

### Create .env file in

In your base path you must create .env file.

### Config path

The first params of config class is path of your .php config files

### Change .env path

The second params of config class is path of your .env file (just directory, no file).

### Get config array

```
$configArray = new \lefuturiste\config\Config(dirname(__DIR__) . '/App/config/', dirname(__DIR__));
```