LaravelPackages.net
Acme Inc.
Toggle sidebar
santutu/laravel-dotenv

set or add key value in .env file

119
0
v3.0.1
About santutu/laravel-dotenv

santutu/laravel-dotenv is a Laravel package for set or add key value in .env file. It currently has 0 GitHub stars and 119 downloads on Packagist (latest version v3.0.1). Install it with composer require santutu/laravel-dotenv. Discover more Laravel packages by santutu or browse all Laravel packages to compare alternatives.

Last updated

laravel-dotenv

Installation

composer require santutu/laravel-dotenv

Usage In Code

Facade

\DotEnv::copy('.env.example') // is equels \DotEnv::copy('.env.example','.env');
\DotEnv::overwrite('.env.example') // same as copy
\DotEnv::load('.env.example') // Not copy, just load '.env.example'

\DotEnv::set('APP_NAME','MY_APP_NAME');
\DotEnv::getOldValue(); //Laravel
\DotEnv::get('APP_NAME'); //MY_APP_NAME
\DotEnv::delete('APP_NAME');

Instance

$dotEnv= (new DotEnv('.env'))->copy('.env.example')) // copy .env.example->.env. if already exist, backup to .env.temp
$dotEnv->copy('.env.prod') // copy .env.prod -> .env. if already exist, backup to .env.temp
$dotEnv->overwrite('.env.prod') // same as copy

$dotEnv->load('.env.dev') //load .env.dev. if not exist, create empty file.

$dotEnv->set('APP_NAME', 'name')
$dotEnv->get('APP_NAME') //name
$dotEnv->delete('APP_NAME')

As alias

$devDotEnv = new DotEnv('dev'); // is equels new DotEnv('.env.dev'); 
\DotEnv::copy('dev'); //is equels \DotEnv::copy('.env.dev') 

Usage In Console

php artisan env:copy prod // if exist .env, Can be skipped.
php artisan env:set APP_NAME MY_APP_NAME  //default is .env
php artisan env:get APP_NAME //MY_APP_NAME 
php artisan env:delete APP_NAME //APP_NAME=MY_APP_NAME

Can set another file with --env argument in console

php artisan env:set APP_NAME MY_APP_NAME --env=.env.prod
php artisan env:get APP_NAME --env=.env.prod //MY_APP_NAME 
php artisan env:delete APP_NAME --env=.env.prod

Also you can alias like --env=prod

Testing

composer test

Inspiration

Inspiration for this package came from imliam's laravel-env-set-command. (This package is not managed at time of writing.)

Contributing

All contributions (pull requests, issues and feature requests) are welcome. Make sure to read through the CONTRIBUTING.md first, though. See the contributors page for all contributors.

License

The MIT License (MIT). Please see License File for more information.

Star History Chart