PHPackages                             ems/packaging - 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. ems/packaging

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

ems/packaging
=============

Helpers for local package development

v0.1.3(8y ago)05.7k1MITPHPPHP &gt;=5.4.0

Since Apr 21Pushed 8y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (1)Versions (5)Used By (0)

A helper lib for local laravel development
==========================================

[](#a-helper-lib-for-local-laravel-development)

This is a small helper package to help you while developing laravel applications and packages.

Install
-------

[](#install)

### 1. Add this to your composer.json:

[](#1-add-this-to-your-composerjson)

```
{
    "require-dev": {
        "ems/packaging" : "0.1.*"
    }
}
```

### 2. Then on Laravel in your app.php on the top:

[](#2-then-on-laravel-in-your-appphp-on-the-top)

```
use Packaging\Environment;

$usePackaging = Environment::init();
```

It returns true if it found a configuration.

### 3. Let the environment configure your application

[](#3-let-the-environment-configure-your-application)

```
