KikoCorsentino / lumen-maker by kikocorsentino

Lumen Maker improves Lumen with controllers and models generator.
13
0
0
Package Data
Maintainer Username: kikocorsentino
Maintainer Contact: kiko@corsentino.net (Kiko Corsentino)
Package Create Date: 2017-08-21
Package Last Update: 2020-07-27
Language: PHP
License: MIT
Last Refreshed: 2025-02-06 03:12:35
Package Statistics
Total Downloads: 13
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 0
Total Forks: 0
Total Open Issues: 0

lumen-make

Lumen Maker is built for porting some of the make commands from Laravel.

This package works well for 5.2.

Let me know if you have requests.

Installation

Just run the following in the root of your project

> composer require kikocorsentino/lumen-maker
// In bootstrap/app.php

/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which {bla bla bla}
|
*/

//$app->register(App\Providers\AppServiceProvider::class);
//$app->register(App\Providers\EventServiceProvider::class);
$app->register(KikoCorsentino\LumenMaker\LumenMakerServiceProvider::class); // <- Add this

Commands

  • make:controller {name} - Makes a new restful controller in Http/Controllers/
  • make:model {name} - Makes a new model in App/