PHPackages                             anthonyedmonds/laravel-multi-queue - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. anthonyedmonds/laravel-multi-queue

ActiveLibrary[Queues &amp; Workers](/categories/queues)

anthonyedmonds/laravel-multi-queue
==================================

Have a Laravel job worker listen to multiple queues instead of just one!

1.1.0(2mo ago)0114↓81.8%MITPHPPHP ^8

Since May 1Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/AnthonyEdmonds/laravel-multi-queue)[ Packagist](https://packagist.org/packages/anthonyedmonds/laravel-multi-queue)[ RSS](/packages/anthonyedmonds-laravel-multi-queue/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (2)Dependencies (2)Versions (5)Used By (0)

laravel-multi-queue
===================

[](#laravel-multi-queue)

Have a Laravel job worker listen to multiple queues instead of just one!

About
-----

[](#about)

By default Laravel Queue Workers can only monitor one queue at a time.

This library provides a `Connector` and a `Queue` driver to handle multiple queues with the same worker.

The only driver currently supported is Laravel's `database` driver.

Usage
-----

[](#usage)

1. Install the library using Composer: ```
    composer require anthonyedmonds/laravel-multi-queue
    ```
2. Adjust your `queue` configuration file:
    - Set the `driver` of your database queue to `multi-queue`
    - Add the `queues` key with a list of queues for the connection to monitor:

    ```
    // Provide a static list...
    'queues' => ['default', 'mail', 'other'],

    // Or add them from the environment...
    'queues' => explode(
        ',',
        env(
            'DB_QUEUE_MULTI',
            env('DB_QUEUE', 'default'),
        ),
    ),
    ```

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance85

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~171 days

Total

3

Last Release

76d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/17785811?v=4)[Anthony Edmonds](/maintainers/AnthonyEdmonds)[@AnthonyEdmonds](https://github.com/AnthonyEdmonds)

---

Top Contributors

[![AnthonyEdmonds](https://avatars.githubusercontent.com/u/17785811?v=4)](https://github.com/AnthonyEdmonds "AnthonyEdmonds (8 commits)")

### Embed Badge

![Health badge](/badges/anthonyedmonds-laravel-multi-queue/health.svg)

```
[![Health](https://phpackages.com/badges/anthonyedmonds-laravel-multi-queue/health.svg)](https://phpackages.com/packages/anthonyedmonds-laravel-multi-queue)
```

###  Alternatives

[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135212.4k7](/packages/statamic-rad-pack-runway)[mpbarlow/laravel-queue-debouncer

A wrapper job for debouncing other queue jobs.

63792.6k1](/packages/mpbarlow-laravel-queue-debouncer)[convenia/pigeon

3234.2k](/packages/convenia-pigeon)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
