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
- Host: GitHub
- URL: https://github.com/toxageek/lumen-preset
- Owner: toxageek
- Archived: true
- Created: 2018-10-04T16:54:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-04T20:18:57.000Z (over 7 years ago)
- Last Synced: 2024-06-20T05:01:52.933Z (almost 2 years ago)
- Topics: front-end, lumen, lumen-framework, lumen-package, preset
- Language: PHP
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).