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

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

smskin/lumen-make
=================

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

v1.0.0(9y ago)757.2k3MITPHP

Since Feb 8Pushed 8y ago2 watchersCompare

[ Source](https://github.com/smskin/lumen-make)[ Packagist](https://packagist.org/packages/smskin/lumen-make)[ RSS](/packages/smskin-lumen-make/feed)WikiDiscussions master Synced yesterday

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

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

[](#lumen-make)

A package built for lumen that ports most of the make commands from laravel.

\#Info This package based on michaelb/lumen-make () library. Added:

- command for generate request (make:request)
- providers for work with requests.

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

[](#installation)

Just run the following in the root of your project

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

Uncomment line in bootstrap/app.php

```
$app->register(App\Providers\EventServiceProvider::class);
```

Add line to bootstrap/app.php for enable generators

```
//for enable generator permanently
$app->register(SMSkin\LumenMake\LumenMakeServiceProvider::class);

//for enable generator in development mode
if (env('APP_ENV') != 'production' || env('APP_ENV') == 'local') {
    $app->register(SMSkin\LumenMake\LumenMakeServiceProvider::class);
}
```

Add line to bootstrap/app.php for enable form requests

```
$app->register(SMSkin\LumenMake\Providers\FormRequestServiceProvider::class);
```

Requests info
-------------

[](#requests-info)

In generated requests used FormRequest from this library. If you want migrate to Laravel framework, change use line in all generated requests

```
use SMSkin\LumenMake\Requests\FormRequest;
\\to
use Illuminate\Foundation\Http\FormRequest;
```

#### Commands

[](#commands)

- `make:job {name}` - Makes a new job class in Jobs/
- `make:console {name}` - Makes a new console command in Console/Commands/
- `make:controller {name}` - Makes a new restful controller in Http/Controllers/
- `make:model {name}` - Makes a new model in /
- `make:middleware {name}` - Makes a new middleware class in Http/Middleware/
- `make:exception {name}` - Makes a new exception class in Exceptions/
- `make:event {name}` - Makes a new event class in Events/
- `make:request {name}` - Makes a new request class in Http/Requests/

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 83.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3434d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3227797?v=4)[Sergey Mihaylov](/maintainers/smskin)[@smskin](https://github.com/smskin)

---

Top Contributors

[![michaelbonds](https://avatars.githubusercontent.com/u/2603881?v=4)](https://github.com/michaelbonds "michaelbonds (26 commits)")[![smskin](https://avatars.githubusercontent.com/u/3227797?v=4)](https://github.com/smskin "smskin (5 commits)")

### Embed Badge

![Health badge](/badges/smskin-lumen-make/health.svg)

```
[![Health](https://phpackages.com/badges/smskin-lumen-make/health.svg)](https://phpackages.com/packages/smskin-lumen-make)
```

###  Alternatives

[rdehnhardt/lumen-maintenance-mode

Define application maintenance mode.

2526.5k1](/packages/rdehnhardt-lumen-maintenance-mode)[michaelb/lumen-make

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

2119.6k](/packages/michaelb-lumen-make)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
