wilzokch / laravel-queue-listen-on-all-queue
Laravel queue listen on all queue
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/wilzokch/laravel-queue-listen-on-all-queue
Requires
- php: >=5.4
- laravel/framework: 5.2.*
This package is auto-updated.
Last update: 2025-10-16 11:23:25 UTC
README
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,