Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

toxageek/lumen-preset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Laravel preset artisan command for Lumen

Swap the front-end scaffolding for the application

Note: This repository contains the code taken from Laravel 5.7.

Installation

Require the package from your composer.json file

"require": {
    "toxageek/lumen-preset": "5.7.*"
}

and run $ composer update or both in one with $ composer require toxageek/lumen-preset.

Next register the following Console Command to your app/Console/Kernel.php file

use ToxaGeek\LumenPreset\Console\PresetCommand;
----------------------------

protected $commands = [
    PresetCommand::class
];

Usage

Call php artisan preset -h in console.

License

This package is open-sourced software licensed under the MIT license.