An open API service indexing awesome lists of open source software.

https://github.com/toxageek/lumen-preset

Laravel preset for Lumen
https://github.com/toxageek/lumen-preset

front-end lumen lumen-framework lumen-package preset

Last synced: 5 months ago
JSON representation

Laravel preset for Lumen

Awesome Lists containing this project

README

          

# 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

```php
"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

```php
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](https://opensource.org/licenses/MIT).