gauravsingh/laravel-env

Laravel Env is env manager which help developer to share development and production env credential with their team.

v1.0.3 2022-04-02 03:40 UTC

This package is auto-updated.

Last update: 2025-03-29 01:03:44 UTC


README

tag downloads Issues Stars release

What ?

Laravel Env is env manager which help developer to share development and production env credential with their team.

Install (Laravel)

Install via composer

composer require gauravsingh/laravel-env

(only for less than Laravel 7 version) Add Service Provider to config/app.php in providers section

Gaurav\LaravelEnv\LaravelEnvServiceProvider::class,

Add a route in your web routes file:

Route::get('/laravelApp-env', [Gaurav\LaravelEnv\controllers\LaravelEnvController::class, 'index']);

Go to http://myapp/laravelApp-env or some other route

Note

Always use custom route to make your app secure