PHPackages                             buggerfall/laravel-amqp-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. buggerfall/laravel-amqp-queue

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

buggerfall/laravel-amqp-queue
=============================

Laravel queue connector, using the AMQP PECL extension.

1.0.6(9y ago)09.5kMITPHPPHP &gt;=5.6

Since Jun 4Pushed 8y ago1 watchersCompare

[ Source](https://github.com/buggerfall/laravel-amqp-queue)[ Packagist](https://packagist.org/packages/buggerfall/laravel-amqp-queue)[ RSS](/packages/buggerfall-laravel-amqp-queue/feed)WikiDiscussions master Synced today

READMEChangelog (4)Dependencies (3)Versions (8)Used By (0)

AMQP queue driver for Laravel
=============================

[](#amqp-queue-driver-for-laravel)

Laravel queue connector, which makes use of the AMQP PECL PHP extension ().

Installation
------------

[](#installation)

Add the following to your `composer.json` requirements, and run a composer update:

```
"garbetjie/laravel-amqp-queue": "dev-master"

```

Then, add the following to your `providers` array in `app/config/app.php`:

```
'AMQPQueue\ServiceProvider',

```

Add the following configuration parameters to `app/config/queue.php`:

```
'connection_name' => [
    'driver' => 'amqp',

    'host' => env('AMQP_HOST', '127.0.0.1'),
    'port' => env('AMQP_PORT', 5672),
    'vhost' => env('AMQP_VIRTUAL_HOST', '/'),
    'login' => env('AMQP_LOGIN', 'guest'),
    'password' => env('AMQP_PASSWORD', 'guest'),

    'connect_timeout' => env('AMQP_CONNECT_TIMEOUT', 0),
    'read_timeout' => env('AMQP_READ_TIMEOUT', 0),
    'write_timeout' => env('AMQP_WRITE_TIMEOUT', 0),

    // Override default settings for specific queues.
    // Queue names are specified using a regex string, exactly as it is used in preg_match().
    'queues' => [
        // Example:
        '/^transient_queue_\d+/i' => [
            'durable' => false,
            'exchange' => 'fanout_exchange', // Specify the exchange to bind to.
        ],
    ],

    // Override default settings for specified exchanges.
    // Name matching is the same as queues.
    'exchanges' => [
        '/^fanout_exchange$/' => [
            'type' => 'fanout',
        ],
    ],

    'defaults' => [
        'queues' => [
            'name' => env('AMQP_QUEUE_NAME', 'laravel'), // The default queue to add any commands/jobs onto from within laravel.
            'durable' => env('AMQP_QUEUE_DURABLE', true),
            'passive' => env('AMQP_QUEUE_PASSIVE', false),
            'exclusive' => env('AMQP_QUEUE_EXCLUSIVE', false),
            'autodelete' => env('AMQP_QUEUE_AUTODELETE', false),
        ],
        'exchanges' => [
            'type' => env('AMQP_EXCHANGE_TYPE', 'direct'),
            'durable' => env('AMQP_EXCHANGE_DURABLE', true),
            'passive' => env('AMQP_EXCHANGE_PASSIVE', false),
        ],
    ],
],

```

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

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

Recently: every ~159 days

Total

7

Last Release

3373d ago

PHP version history (2 changes)1.0.0PHP &gt;=5.4

1.0.3PHP &gt;=5.6

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6505777?v=4)[buggerfall](/maintainers/buggerfall)[@buggerfall](https://github.com/buggerfall)

---

Top Contributors

[![garbetjie](https://avatars.githubusercontent.com/u/254752?v=4)](https://github.com/garbetjie "garbetjie (1 commits)")

---

Tags

laravelqueueAMQP

### Embed Badge

![Health badge](/badges/buggerfall-laravel-amqp-queue/health.svg)

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

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.1k91.3M282](/packages/laravel-horizon)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

43140.3k](/packages/harris21-laravel-fuse)[laravel/ai

The official AI SDK for Laravel.

1.0k2.1M165](/packages/laravel-ai)[moonshine/moonshine

Laravel administration panel

1.3k239.9k76](/packages/moonshine-moonshine)[yangusik/laravel-balanced-queue

Laravel queue management with load balancing between partitions (user groups)

8512.6k](/packages/yangusik-laravel-balanced-queue)

PHPackages © 2026

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