alejojperez / laravel-skeleton-generator
A package containing a set of commands to generate any kind of component
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:package
Requires
- illuminate/console: ^5.2
- illuminate/support: ^5.2
- venturecraft/revisionable: ^1.23
This package is not auto-updated.
Last update: 2024-11-09 20:28:09 UTC
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, ]; ...