sven/flex-env

Edit your .env file in Laravel directly from the command line.
97,221 103
Install
composer require sven/flex-env
Latest Version:v2.2.2
PHP:^8.1
License:MIT
Last Updated:Mar 1, 2024
Links: GitHub  ·  Packagist
Maintainer: svenluijten

flex-env

Laravel FlexEnv

Latest Version on Packagist Total Downloads Software License Build Status Code Climate Code Quality StyleCI

This package adds a handful of useful commands to edit your .env file in Laravel directly from the command line with a simple, human readable API. Never touch the mouse again!

Installation

Via composer:

$ composer require sven/flex-env --dev

Alternatively, add the package to your dev dependencies in composer.json and run composer update afterwards:

{
    "require-dev": {
        "sven/flex-env": "^2.0"
    }
}

Note: If you're using Laravel 5.5, you're done! The service provider is automatically registered in the container, thanks to auto-discovery.

Next, add the FlexEnvServiceProvider to your providers array in config/app.php:

// config/app.php
'providers' => [
    ...
    Sven\FlexEnv\FlexEnvServiceProvider::class,
]

Usage

The commands in this package should now be registered. Simply run php artisan, and you will see them in the list.

# Create or edit an entry in your .env file:
$ php artisan env:set {key} {value} [--line-break|-L]
# Add the --line-break (or -L) option to insert a line break before the entry.
# Delete an entry from your .env file:
$ php artisan env:delete {key}
# Show the value of the given key from your .env file:
$ php artisan env:get {key}
# Show the entire .env file:
$ php artisan env:list

All changes you made should now be reflected in your .env file.

Inspiration

Inspiration for this package came from LeShadow's ArtisanExtended.

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

sven/flex-env is licensed under the MIT License (MIT). See the license file for more information.

Related Packages

syamsoul/laravel-set-env

Easily update or insert Laravel environment variable with Artisan command

53,433 9
nobodyiscertain/laravel-db-commands

A set of Artisan commands to help with database tasks.

2,235 1
fedeisas/laravel-js-routes

Laravel 4 routes from Javascript

138,842 62
bca/laravel-inspect

Instant support for PHP Code Sniffer, PHP CS Fixer, and PHP MD in the Artisan CL...

24,154 50