2017 © Pedro Peláez
 

package laravel-skeleton-generator

A package containing a set of commands to generate any kind of component

image

alejojperez/laravel-skeleton-generator

A package containing a set of commands to generate any kind of component

  • Monday, April 23, 2018
  • by alejojperez
  • Repository
  • 1 Watchers
  • 2 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

laravel-skeleton-generator

A package containing a set of commands to generate any kind of component, (*1)

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,
];
...

The Versions

23/04 2018

dev-master

9999999-dev

A package containing a set of commands to generate any kind of component

  Sources   Download

APACHE LICENSE - VERSION 2.0

The Requires

 

by Alejandro Perez

laravel command skeleton generate

11/08 2016

1.0.0

1.0.0.0

A package containing a set of commands to generate any kind of component

  Sources   Download

The Requires

 

by Alejandro Perez

laravel command skeleton generate