PHPackages                             santosalan/lumen-crud - 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. [API Development](/categories/api)
4. /
5. santosalan/lumen-crud

ActiveLibrary[API Development](/categories/api)

santosalan/lumen-crud
=====================

Generate Lumen API CRUD

v1.0.5(7y ago)11071MITPHPPHP &gt;=7.1.3

Since Oct 28Pushed 7y ago1 watchersCompare

[ Source](https://github.com/santosalan/lumen-crud)[ Packagist](https://packagist.org/packages/santosalan/lumen-crud)[ RSS](/packages/santosalan-lumen-crud/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (6)Dependencies (5)Versions (7)Used By (0)

santosalan/lumen-crud
=====================

[](#santosalanlumen-crud)

Install with Composer
---------------------

[](#install-with-composer)

> php composer.phar require santosalan/lumen-crud

Enable it in *bootstrap/app.php*
--------------------------------

[](#enable-it-in-bootstrapappphp)

```
$app->withFacades();
$app->withEloquent();
```

Add it in *bootstrap/app.php*
-----------------------------

[](#add-it-in-bootstrapappphp)

```
$app->register(SantosAlan\LumenCrud\ServiceProvider::class);
```

Doctrine Inflectors - Irregular Plural and Singular
---------------------------------------------------

[](#doctrine-inflectors---irregular-plural-and-singular)

#### Create, if not exists, file *config/app.php* and register this

[](#create-if-not-exists-file-configappphp-and-register-this)

```
return [
    /**
     * Irregulares Words
     */
    'doctrine-inflector' => [
        'plural' => [
            'irregular' => [
                'traducao' => 'traducoes',
            ],
        ],

        'singular' => [
            'irregular' => [
                'traducoes' => 'traducao',
            ],
        ],
    ],
];
```

#### Add it in *bootstrap/app.php* before *return $app;*

[](#add-it-in-bootstrapappphp-before-return-app)

```
$app->boot();
Inflector::rules('plural', config('app.doctrine-inflector.plural'));
Inflector::rules('singular', config('app.doctrine-inflector.singular'));
```

See Help
--------

[](#see-help)

> php artisan make:lumen-crud -h

See Tables
----------

[](#see-tables)

> php artisan make:lumen-crud

Generate a Basic Lumen-CRUD
---------------------------

[](#generate-a-basic-lumen-crud)

> php artisan make:lumen-crud --tables \[ all | table\_number \] --path-models 'App\\Models' --routes=\[ y | n \] --base-model \[ y | n \]

or

> php artisan make:lumen-crud -t \[ all | table\_number \] -p 'App\\Models' -r \[ y | n \] -b \[ y | n \]

**Caution: All files will be replaced**

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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

Every ~30 days

Total

6

Last Release

2646d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9675697?v=4)[Alan Santos](/maintainers/santosalan)[@santosalan](https://github.com/santosalan)

---

Top Contributors

[![santosalan](https://avatars.githubusercontent.com/u/9675697?v=4)](https://github.com/santosalan "santosalan (34 commits)")

---

Tags

apilaravellumencrudadminadministratorsantosalan

### Embed Badge

![Health badge](/badges/santosalan-lumen-crud/health.svg)

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k51.0M7.6k](/packages/larastan-larastan)[api-platform/laravel

API Platform support for Laravel

59156.3k11](/packages/api-platform-laravel)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

815320.5k3](/packages/defstudio-telegraph)[simplestats-io/laravel-client

Analytics for Laravel. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant, ad-blocker proof.

5019.3k](/packages/simplestats-io-laravel-client)[essa/api-tool-kit

set of tools to build an api with laravel

53386.5k](/packages/essa-api-tool-kit)

PHPackages © 2026

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