config
Simple config library for php, (*1)
Dependecies
- PHP >= 5.3
- vlucas/phpdotenv : lasted version
1. Installing
Easy install via composer. Still no idea what composer is? Inform yourself here., (*2)
composer require lefuturiste/config
, (*3)
2. Usage
Create .env file in
In your base path you must create .env file., (*4)
Config path
The first params of config class is path of your .php config files, (*5)
Change .env path
The second params of config class is path of your .env file (just directory, no file)., (*6)
Get config array
$configArray = new \lefuturiste\config\Config(dirname(__DIR__) . '/App/config/', dirname(__DIR__));