PHPackages                             hr-d/laravel-queue-rabbitmq - 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. hr-d/laravel-queue-rabbitmq

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

hr-d/laravel-queue-rabbitmq
===========================

RabbitMQ driver for Laravel Queue

v11.3.0(4y ago)0174MITPHPPHP ^7.3|^8.0

Since Jan 28Pushed 1y agoCompare

[ Source](https://github.com/hr-d/laravel-queue-rabbitmq)[ Packagist](https://packagist.org/packages/hr-d/laravel-queue-rabbitmq)[ RSS](/packages/hr-d-laravel-queue-rabbitmq/feed)WikiDiscussions v5.1 Synced today

READMEChangelog (6)Dependencies (7)Versions (76)Used By (0)

RabbitMQ Queue driver for Laravel
=================================

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

[![Latest Stable Version](https://camo.githubusercontent.com/c4b3c8b126d8cf307b7212fd5d046215116c6dd645e9ad7ef7cbf91ddceaba38/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f6c61726176656c2d71756575652d7261626269746d712f762f737461626c65)](https://packagist.org/packages/vladimir-yuldashev/laravel-queue-rabbitmq) [![Total Downloads](https://camo.githubusercontent.com/cd2379cc91f01f4e1b105e13ae1df8d94357544673dc3801c5b0c175921df26f/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f6c61726176656c2d71756575652d7261626269746d712f646f776e6c6f616473)](https://packagist.org/packages/vladimir-yuldashev/laravel-queue-rabbitmq) [![Latest Unstable Version](https://camo.githubusercontent.com/536aa6d15b485b6608d88550b88c273351ae2e2882867deb4c86fb3e56bd781a/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f6c61726176656c2d71756575652d7261626269746d712f762f756e737461626c65)](https://packagist.org/packages/vladimir-yuldashev/laravel-queue-rabbitmq) [![License](https://camo.githubusercontent.com/9341d746fd848015a277fc0e4cd84fac3d228318f1b871f2797921ea0fe829e3/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f6c61726176656c2d71756575652d7261626269746d712f6c6963656e7365)](https://packagist.org/packages/vladimir-yuldashev/laravel-queue-rabbitmq)

\####Installation

Require this package in your composer.json and run composer update (IMPORTANT! DO NOT USE "dev-master"):

```
"vladimir-yuldashev/laravel-queue-rabbitmq": "5.1"

```

After composer update is finished you need to add ServiceProvider to your `providers` array in `app.php`:

```
VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class,

```

Add these lines to your `app/config/queue.php` file to `connections` array:

```
'rabbitmq' => [
	'driver'          		=> 'rabbitmq',

	'host'            		=> env('RABBITMQ_HOST', '127.0.0.1'),
	'port'            		=> env('RABBITMQ_PORT', 5672),

	'vhost'           		=> env('RABBITMQ_VHOST', '/'),
	'login'           		=> env('RABBITMQ_LOGIN', 'guest'),
	'password'        		=> env('RABBITMQ_PASSWORD', 'guest'),

	'queue'           		=> env('RABBITMQ_QUEUE'), // name of the default queue,

	'exchange_declare' 		=> env('RABBITMQ_EXCHANGE_DECLARE', true), // create the exchange if not exists
	'queue_declare_bind' 	=> env('RABBITMQ_QUEUE_DECLARE_BIND', true), // create the queue if not exists and bind to the exchange

	'queue_params'    		=> [
		'passive'     		=> env('RABBITMQ_QUEUE_PASSIVE', false),
		'durable'     		=> env('RABBITMQ_QUEUE_DURABLE', true),
		'exclusive'   		=> env('RABBITMQ_QUEUE_EXCLUSIVE', false),
		'auto_delete' 		=> env('RABBITMQ_QUEUE_AUTODELETE', false),
	],

	'exchange_params' 		=> [
		'type'        		=> env('RABBITMQ_EXCHANGE_TYPE', 'direct'), // more info at http://www.rabbitmq.com/tutorials/amqp-concepts.html
		'passive'     		=> env('RABBITMQ_EXCHANGE_PASSIVE', false),
		'durable'     		=> env('RABBITMQ_EXCHANGE_DURABLE', true), // the exchange will survive server restarts
		'auto_delete' 		=> env('RABBITMQ_EXCHANGE_AUTODELETE', false),
	],

],

```

And add these properties to `.env` with proper values:

```
QUEUE_DRIVER=rabbitmq

RABBITMQ_HOST=127.0.0.1
RABBITMQ_PORT=5672
RABBITMQ_VHOST=/
RABBITMQ_LOGIN=guest
RABBITMQ_PASSWORD=guest
RABBITMQ_QUEUE=queue_name

```

You can also find full examples in src/examples folder.

\####Usage Once you completed the configuration you can use Laravel Queue API. If you used other queue drivers you do not need to change anything else. If you do not know how to use Queue API, please refer to the official Laravel documentation:

\####PHPUnit Unit tests will be provided soon.

\####Contribution You can contribute to this package by discovering bugs and opening issues. Enjoy!

\####Supported versions of Laravel 4.0, 4.1, 4.2, 5.0, 5.1 The version is being matched by the release tag of this library.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 89.6% 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 ~56 days

Recently: every ~98 days

Total

72

Last Release

564d ago

Major Versions

v8.0.x-dev → v10.2.02020-04-24

v10.2.2 → v11.0.02020-09-08

v10.2.3 → v11.1.22021-03-06

v5.1.x-dev → v6.0.42023-01-21

v5.4.x-dev → 7.5.12024-12-16

PHP version history (9 changes)4.0PHP &gt;=5.3.0

v5.0.x-devPHP &gt;=5.4.0

5.2PHP &gt;=5.5.9

v5.3.x-devPHP &gt;=5.6.4

v5.5.x-devPHP &gt;=7.0

v7.1.0PHP ^7.1.3

v9.0.0PHP ^7.2

v11.0.0PHP ^7.3

v11.2.0PHP ^7.3|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/4e1a0017d61fa8d018e2c32a4b30a9269181026849ee088282efe0fb176362ef?d=identicon)[hr-d](/maintainers/hr-d)

---

Top Contributors

[![vyuldashev](https://avatars.githubusercontent.com/u/1809081?v=4)](https://github.com/vyuldashev "vyuldashev (60 commits)")[![hr-d](https://avatars.githubusercontent.com/u/62852565?v=4)](https://github.com/hr-d "hr-d (2 commits)")[![changyuan](https://avatars.githubusercontent.com/u/3667295?v=4)](https://github.com/changyuan "changyuan (1 commits)")[![mikanoz](https://avatars.githubusercontent.com/u/2713277?v=4)](https://github.com/mikanoz "mikanoz (1 commits)")[![samlev](https://avatars.githubusercontent.com/u/462466?v=4)](https://github.com/samlev "samlev (1 commits)")[![jowy](https://avatars.githubusercontent.com/u/391324?v=4)](https://github.com/jowy "jowy (1 commits)")[![Grummfy](https://avatars.githubusercontent.com/u/668804?v=4)](https://github.com/Grummfy "Grummfy (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/hr-d-laravel-queue-rabbitmq/health.svg)

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

###  Alternatives

[vladimir-yuldashev/laravel-queue-rabbitmq

RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.

2.1k10.5M33](/packages/vladimir-yuldashev-laravel-queue-rabbitmq)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M300](/packages/laravel-horizon)[bschmitt/laravel-amqp

AMQP wrapper for Laravel and Lumen to publish and consume messages

2822.5M7](/packages/bschmitt-laravel-amqp)[jwage/phpamqplib-messenger

Symfony messenger transport for the php-amqplib/php-amqplib library.

88227.2k1](/packages/jwage-phpamqplib-messenger)[hyperf/amqp

A amqplib for hyperf.

231.3M71](/packages/hyperf-amqp)[convenia/pigeon

3334.8k](/packages/convenia-pigeon)

PHPackages © 2026

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