alejojperez/laravel-skeleton-generator
Composer 安装命令:
composer require alejojperez/laravel-skeleton-generator
包简介
A package containing a set of commands to generate any kind of component
README 文档
README
A package containing a set of commands to generate any kind of component
Include the service provider
// config/app.php return [ "providers" => [ ... AlejoJPerez\LaravelSkeletonGenerator\LaravelSkeletonGeneratorServiceProvider::class, ... ] ];
Publish the package configuration (optional)
php artisan vendor:publish --provider="AlejoJPerez\LaravelSkeletonGenerator\LaravelSkeletonGeneratorServiceProvider" --tag="config"
Include all the commands to the console
// app/Console/Kernel.php ... protected $commands = [ \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateSkeletonCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateEntityCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateJobCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateJobValidatorCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateRepositoryCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateRepositoryContractCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateRepositoryServiceProviderCommand::class, \AlejoJPerez\LaravelSkeletonGenerator\Commands\Generate\GenerateTransformerCommand::class, ]; ...
统计信息
- 总下载量: 22
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-09-13