PHPackages                             vidhyar2612/enveditor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. vidhyar2612/enveditor

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

vidhyar2612/enveditor
=====================

Laravel 5.2 - Env Editor

v1.3.1(9y ago)654.6k↓37.5%2MITPHP

Since Nov 21Pushed 4y ago2 watchersCompare

[ Source](https://github.com/vidhyar2612/enveditor)[ Packagist](https://packagist.org/packages/vidhyar2612/enveditor)[ RSS](/packages/vidhyar2612-enveditor/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)DependenciesVersions (7)Used By (0)

Laravel 5.X to 8.X - ENV Editor
===============================

[](#laravel-5x-to-8x---env-editor)

[![Build Status](https://camo.githubusercontent.com/e031c8309c07189c612484b3de882ff4bc45b43502c944c650901aec449da2ed/68747470733a2f2f7472617669732d63692e6f72672f76696468796172323631322f656e76656469746f722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/vidhyar2612/enveditor)[![Latest Stable Version](https://camo.githubusercontent.com/dc96f2781bcc0fdcd468acb2ccb6ac1de3d9bb4679e857112ad911939d3d710f/68747470733a2f2f706f7365722e707567782e6f72672f76696468796172323631322f656e76656469746f722f762f737461626c65)](https://packagist.org/packages/vidhyar2612/enveditor)[![Total Downloads](https://camo.githubusercontent.com/9285e2ed9e0750ec02d464266299c335500eeec0c6a1f7608f12e87b4beedefd/68747470733a2f2f706f7365722e707567782e6f72672f76696468796172323631322f656e76656469746f722f646f776e6c6f616473)](https://packagist.org/packages/vidhyar2612/enveditor)[![License](https://camo.githubusercontent.com/487329c99fb629bc5a51a5a53548a701f65d5a4083d8b2526ed5c64950da351e/68747470733a2f2f706f7365722e707567782e6f72672f76696468796172323631322f656e76656469746f722f6c6963656e7365)](https://packagist.org/packages/vidhyar2612/enveditor)

Installation
------------

[](#installation)

The Enveditor Service Provider can be installed via Composer

```
"require": {
  "vidhyar2612/enveditor": "^1.0"
}

```

Use composer to install this package.

```
composer require vidhyar2612/enveditor

```

\##Registering the Package

Register the service provider within the providers array found in app/config/app.php:

```
'providers' => array(
    // ...

    vidhyar2612\Enveditor\EnveditorServiceProvider::class
)

```

Add an alias within the aliases array found in app/config/app.php:

```
'aliases' => array(
    // ...

    'Enveditor' => 'vidhyar2612\Enveditor\Facade',
)

```

Usage
-----

[](#usage)

You can either access the Enveditor store via its facade or inject it by type-hinting towards the abstract class `vidhyar2612\Enveditor\EnveditorStore`.

```
