Skip to content

bottlenosecreative/laravel-env-set-command

This branch is 10 commits ahead of, 51 commits behind imliam/laravel-env-set-command:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

47e9143 Β· May 20, 2020

History

13 Commits
May 20, 2020
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
Jul 13, 2018
May 20, 2020
May 20, 2020

Repository files navigation

Laravel set:env Command

Latest Version on Packagist Total Downloads License

Reason for Fork

This fork was created so I could store/view historic changes to the .env file for debugging purposes. This allows admins/developers to track what env keys were modified, and when they were modified.

Instead of outright replacing the old key/value pair in the .env file, instead we comment out the previous line, append a timecode of when it was modified, and add the new key/value pair below.

To enable history, add the following to your .env:

ENVSET_HISTORY=true

env example:

Env file example

Original Readme:

Set a .env file variable from the command line.

Installation

You can install the package with Composer using the following command:

composer require imliam/laravel-env-set-command:^1.0.0

Usage

When running the env:set artisan command, you must provide both a key and value as two arguments.

$ php artisan env:set app_name Example
# Environment variable with key 'APP_NAME' has been changed from 'Laravel' to 'Example'

You can also set values with spaces by wrapping them in quotes.

$ php artisan env:set app_name "Example App"
# Environment variable with key 'APP_NAME' has been changed from 'Laravel' to '"Example App"'

The command will also create new environment variables if an existing one does not exist.

$ php artisan env:set editor=vscode
# Environment variable with key 'EDITOR' has been set to 'vscode'

Instead of two arguments split by a space, you can also mimic the .env file format by supplying KEY=VALUE.

$ php artisan env:set app_name=Example
# Environment variable with key 'APP_NAME' has been changed from 'Laravel' to 'Example'

The command will do its best to stop any invalid inputs.

$ php artisan env:set @pp_n@me Laravel
# Invalid environment key. Only use letters and underscores

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

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

About

Set a .env file variable from the command line.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%