2017 © Pedro Peláez
 

library laravel-env-handler

Laravel 5 artisan command to handling the environment configuration (.env)

image

indragunawan/laravel-env-handler

Laravel 5 artisan command to handling the environment configuration (.env)

  • Sunday, April 17, 2016
  • by indragunawan
  • Repository
  • 1 Watchers
  • 6 Stars
  • 50 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 4 % Grown

The README.md

Managing your Laravel 5 environment (.env)

This package allows you to manage your ignored environment configuration when you are running a composer install / update or even manually call the command. It works when storing the .env.example file under the application root. Other keys are copied without change., (*1)

Installation

Run the following command from your terminal:, (*2)

bash composer require "indragunawan/laravel-env-handler: 0.*", (*3)

or add this to require section in your composer.json file:, (*4)

``` json { "require": { "indragunawan/laravel-env-handler": "0.*" } }, (*5)


run ```composer update``` Then add Service provider to `config/app.php` ``` php 'providers' => [ // ... 'IndraGunawan\LaravelEnvHandler\EnvHandlerServiceProvider' ]

Usage

via command line, (*6)

$ php artisan env:update

Options

$ php artisan env:update --force

execute the update even though there are no new environment parameters, (*7)

Credits

This package is largely inspired by this., (*8)

The Versions

17/04 2016

dev-master

9999999-dev

Laravel 5 artisan command to handling the environment configuration (.env)

  Sources   Download

MIT

The Requires

 

laravel configuration artisan environment dotenv

03/06 2015

v0.1.0

0.1.0.0

Laravel 5 artisan command to handling the environment configuration (.env)

  Sources   Download

MIT

The Requires

 

laravel configuration artisan environment dotenv