03/07
2017
Wallogit.com
2017 © Pedro Peláez
Auto resolve Artisan commands in Laravel
Automatically resolve Laravel (Artisan) commands from without the need to explicitly specify in app/Console/Kernel.php, (*1)
Install via composer:, (*2)
$ composer require ampersa\laravel-autoresolve
Include the service provider in app/config.php, (*3)
'providers' => [
...
Ampersa\LaravelAutoresolve\LaravelAutoresolveServiceProvider::class,
...
];
Publish the configuration, (*4)
$ php artisan vendor:publish --provider="Ampersa\LaravelAutoresolve\LaravelAutoresolveServiceProvider"
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature