Package Data | |
---|---|
Maintainer Username: | ikovbas |
Maintainer Contact: | kovbas.ivan@gmail.com (Ivan Kovbas) |
Package Create Date: | 2015-06-26 |
Package Last Update: | 2015-08-01 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:26:16 |
Package Statistics | |
---|---|
Total Downloads: | 765 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Environment Switcher helps you to managing multiple .env of your Laravel 5 / Lumen 5 app.
The problem of dotenv is that you can't keep .env
files for all your environments under version controll.
This package trys to help you with it. For more details see Usage section.
Environment Switcher can be installed globally or per project, with Composer:
Globally:
composer global require ikovbas/laravel-env-switcher
Per project:
composer require ikovbas/laravel-env-switcher
Open your Laravel config file config/app.php
and add the service provider for this package in the $providers
array:
'IKovbas\EnvSwitcher\EnvSwitcherServiceProvider'
Open your bootstrap/app.php
file and add the following line to Register Service Providers section:
$app->register('IKovbas\EnvSwitcher\EnvSwitcherServiceProvider');
Show the current environment:
$ php artisan env:switch
Current application environment: production
Save the current .env
file to .env.$APP_ENV
:
$ php artisan env:switch --save
Environmental config was successfully saved to .env.production
Switch to another environment:
$ php artisan env:switch development
Successfully switched from production to development
Note: .env.development
file should exists before calling the command.
The MIT License
Copyright (c) 2015 Ivan Kovbas
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.