laravel-queue-listen-on-all-queue maintained by wilzokch
Laravel Queue Listen on all queue ( Laravel 5 Package )
Installation
-
add
"repositories": [ { "type": "vcs", "url": "git@github.com:wilzokch/laravel-queue-listen-on-all-queue.git" } ],to your composer.json.
-
run the
composer requirecommand from your terminal:composer require wilzokch/laravel-queue-listen-on-all-queue:dev-master
Laravel 5.5+ uses Package Auto-Discovery, so does not require you to manually add the ServiceProvider.
Laravel version below 5.5:
If you use Laravel version below 5.5 or don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Wilzokch\LaravelQueue\QueueServiceProvider::class,