Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lefuturiste/config
- Owner: lefuturiste
- Created: 2017-09-13T18:45:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-25T19:33:24.000Z (about 7 years ago)
- Last Synced: 2024-05-08T10:45:59.716Z (6 months ago)
- Language: PHP
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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__));
```