Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-queue-listen-on-all-queue maintained by wilzokch

Description
Laravel queue listen on all queue
Author
Last update
2021/10/16 04:24 (dev-master)
Links
Downloads
2

Comments
comments powered by Disqus

Laravel Queue Listen on all queue ( Laravel 5 Package )

php 5.5+ author

Installation

  1. add

     "repositories": [
         {
             "type": "vcs",
             "url":  "git@github.com:wilzokch/laravel-queue-listen-on-all-queue.git"
         }
     ],
    

    to your composer.json.

  2. 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,