2017 © Pedro Peláez
 

library laravel-artisan-assist

artisan make for laravel

image

yellowhuang/laravel-artisan-assist

artisan make for laravel

  • Thursday, April 6, 2017
  • by HuangYellow
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Installation

As others package, use composer install this package. For example:, (*1)

``` bash $ composer require yellowhuang/laravel-artisan-assist, (*2)


Secondly, you need to register service provider in `config/app.php`. ``` php 'providers' => [ ... /* * Package Service Providers... */ Yellow\ArtisanAssist\ArtisanAssistServiceProvider::class, ...

Thirdly, Going to app/Console/Kernel.php, adding console command., (*3)

``` php protected $commands = [ \Yellow\ArtisanAssist\Commands\makeService::class, \Yellow\ArtisanAssist\Commands\makeRepository::class, \Yellow\ArtisanAssist\Commands\makeTransformer::class, ];, (*4)


Finally, you can checkout `$ php artisan` and you can see 3 commands. ``` bash make:service make:respository make:transformer

The Versions

06/04 2017

dev-master

9999999-dev

artisan make for laravel

  Sources   Download

by Avatar Yellow

06/04 2017

1.0.0

1.0.0.0

artisan make for laravel

  Sources   Download

by Avatar Yellow