gauravsingh / laravel-env
Laravel Env is env manager which help developer to share development and production env credential with their team.
Package info
github.com/talktogauravsingh/laravel-env-app
Language:Blade
pkg:composer/gauravsingh/laravel-env
v1.0.3
2022-04-02 03:40 UTC
This package is auto-updated.
Last update: 2026-03-29 00:59:22 UTC
README
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