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

This package is auto-updated.

Last update: 2024-05-16 07:53:15 UTC


README

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,