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. anthonyedmonds/laravel-multi-queue

ActiveLibrary

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

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

1.0.1(1y ago)0105—0%MITPHPPHP ^8

Since May 1Pushed 1y 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 1mo ago

READMEChangelog (1)Dependencies (1)Versions (3)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

28

—

LowBetter than 54% of packages

Maintenance49

Moderate activity, may be stable

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 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 ~0 days

Total

2

Last Release

373d 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 (6 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

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135192.6k5](/packages/statamic-rad-pack-runway)

PHPackages © 2026

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