gauravsingh / laravel-env
Laravel Env is env manager which help developer to share development and production env credential with their team.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is auto-updated.
Last update: 2025-03-29 01:03:44 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