PHPackages                             michaelb/lumen-make - 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. michaelb/lumen-make

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

michaelb/lumen-make
===================

Lumen make adds more make commands to lumen for jobs, controllers, middleware, etc.

v1.0(10y ago)2119.6k↓75%4[2 issues](https://github.com/michaelbonds/lumen-make/issues)MITPHP

Since Jan 20Pushed 10y ago2 watchersCompare

[ Source](https://github.com/michaelbonds/lumen-make)[ Packagist](https://packagist.org/packages/michaelb/lumen-make)[ RSS](/packages/michaelb-lumen-make/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

lumen-make
==========

[](#lumen-make)

A package built for lumen that ports most of the make commands from laravel. For lumen v5.1, but will most likely work for 5.2 as well. I haven't tested. If you have requests, let me know, or do it yourself and make a pull request

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

[](#installation)

Just run the following in the root of your project

```
> composer require michaelb/lumen-make
```

```
// In bootstrap/app.php

/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which
| are used to bind services into the container. Service providers are
| totally optional, so you are not required to uncomment this line.
|
*/

//$app->register(App\Providers\AppServiceProvider::class);
$app->register(App\Providers\EventServiceProvider::class);
$app->register(MichaelB\LumenMake\LumenMakeServiceProvider::class); //
