| Package Data | |
|---|---|
| Maintainer Username: | kun391 | 
| Maintainer Contact: | nguyentruongthanh.dn@gmail.com (Thanh Nguyen) | 
| Package Create Date: | 2016-05-25 | 
| Package Last Update: | 2016-06-27 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-26 03:03:35 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 7 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 2 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
The package use to generate a module with JSONAPI spec.
Via Composer
$ composer require kun391/laravel-generator
Or add the following to your composer.json file :
"require": {
    "kun391/laravel-generator": "dev-master",
},
$ composer update
Then register service provider with in config/app.php:
'providers' => [
    ...
    Kun\Generator\GeneratorServiceProvider::class,
]
and add alias Input to aliases
'aliases' => [
    ...
    'Input' => Illuminate\Support\Facades\Input::class,
]
Run this command with format:
php artisan generator:run events --dir='./packages' --namespace='Kun\Events'
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
The MIT License (MIT). Please see License File for more information.