wilzokch / laravel-queue-listen-on-all-queue
There is no license information available for the latest version (v1.0.0) of this package.
Laravel queue listen on all queue
v1.0.0
2021-06-12 07:58 UTC
Requires
- php: >=5.4
- laravel/framework: 5.2.*
This package is auto-updated.
Last update: 2025-04-16 10:06:12 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 require
command 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,