ampersa / laravel-autoresolve by ampersa

Auto resolve Artisan commands in Laravel
50
1
1
Package Data
Maintainer Username: ampersa
Maintainer Contact: contact@ampersa.co.uk (Ampersa Ltd)
Package Create Date: 2017-05-11
Package Last Update: 2017-07-03
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-11-23 03:09:10
Package Statistics
Total Downloads: 50
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Laravel (Artisan) Autoresolver

Automatically resolve Laravel (Artisan) commands from without the need to explicitly specify in app/Console/Kernel.php

Installation

Install via composer:

$ composer require ampersa\laravel-autoresolve

Include the service provider in app/config.php

'providers' => [
    ...
    Ampersa\LaravelAutoresolve\LaravelAutoresolveServiceProvider::class,
    ...
];

Publish the configuration

$ php artisan vendor:publish --provider="Ampersa\LaravelAutoresolve\LaravelAutoresolveServiceProvider"

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request