ampersa / laravel-autoresolve
Auto resolve Artisan commands in Laravel
Installs: 52
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/ampersa/laravel-autoresolve
This package is auto-updated.
Last update: 2025-09-19 21:02:55 UTC
README
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
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request