Package Data | |
---|---|
Maintainer Username: | thesnackalicious |
Maintainer Contact: | fake@notreal.com (James Brauman) |
Package Create Date: | 2015-05-29 |
Package Last Update: | 2015-06-01 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:23:58 |
Package Statistics | |
---|---|
Total Downloads: | 9 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 8 |
Total Watchers: | 1 |
Total Forks: | 2 |
Total Open Issues: | 0 |
Simple per-environment .env files for Laravel 5.
multidotenv is a package for Laravel 5 that provides functionality to load an additional environment-specific .env file.
Laravel 5 uses the dotenv package to load the .env
file in the root directory. multidotenv extends Laravel 5 so that an additional .env
file is loaded depending on the environment name.
For example, given a .env
file containing:
DB_HOST=localhost
DB_DATABASE=my_project
DB_USERNAME=root
DB_PASSWORD=root
and a .env.testing
file containing:
DB_DATABASE=my_project_testing
when running the command php artisan migrate --env=testing
the loaded enviroment variables would be:
DB_HOST=localhost
DB_DATABASE=my_project_testing
DB_USERNAME=root
DB_PASSWORD=root
Note that this package will always load '.env.' . $app->environment()
if it exists. This is normally what APP_ENV
is set to but can be overridden when using artisan by passing the --env
flag. If neither of these are true Laravel 5 will use production
by default.
You can leverage the 'always loading' functionality mentioned above to load a per-environment .env
file for HTTP requests too.
For example in your .env
file set your APP_ENV
variable to foo
. Now even over HTTP requests the .env.foo
file will be loaded if it exists.
Add thesnackalicious/multidotenv
to your composer.json
file:
"require": {
"thesnackalicious/multidotenv": "dev-master"
}
Use composer
to install this package.
$ composer update
Add a bootrappers()
function to the app/Http/Kernel.php
file and the app/Console/Kernel.php
file:
/**
* Get the bootstrap classes for the application.
*
* @return array
*/
protected function bootstrappers()
{
$search = 'Illuminate\Foundation\Bootstrap\DetectEnvironment';
$replacement = 'TheSnackalicious\MultiDotEnv\DetectEnvironment';
return array_map(function($v) use ($search, $replacement) {
return $v == $search ? $replacement : $v;
}, $this->bootstrappers);
}