LaravelPackages.net
Acme Inc.
Toggle sidebar
ampersa/laravel-autoresolve

Auto resolve Artisan commands in Laravel

52
1
0.3
About ampersa/laravel-autoresolve

ampersa/laravel-autoresolve is a Laravel package for auto resolve artisan commands in laravel. It currently has 1 GitHub stars and 52 downloads on Packagist (latest version 0.3). Install it with composer require ampersa/laravel-autoresolve. Discover more Laravel packages by ampersa or browse all Laravel packages to compare alternatives.

Last updated

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
Comments