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

ActiveLibrary

ideil/laravel-queue-rabbitmq
============================

RabbitMQ driver for Laravel Queue

5.2(10y ago)044MITPHPPHP &gt;=5.5.9

Since Jan 28Pushed 10y ago4 watchersCompare

[ Source](https://github.com/ideil/laravel-queue-rabbitmq)[ Packagist](https://packagist.org/packages/ideil/laravel-queue-rabbitmq)[ RSS](/packages/ideil-laravel-queue-rabbitmq/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (11)Used By (0)

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

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

\####Installation

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

```
"ideil/laravel-queue-rabbitmq": "5.2"

```

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' => [
		'name'        => env('RABBITMQ_EXCHANGE_NAME', null),
		'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, 5.2 The version is being matched by the release tag of this library.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 83.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 ~86 days

Recently: every ~0 days

Total

10

Last Release

3707d ago

Major Versions

4.2 → v5.0.x-dev2016-03-14

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

v4.2.x-devPHP &gt;=5.4.0

5.1PHP &gt;=5.5.9

### Community

Maintainers

![](https://www.gravatar.com/avatar/97732ae6160780311a304310a3d5cbe9d67faf0c858c18b14e97288a219673a9?d=identicon)[s.litvinchuk](/maintainers/s.litvinchuk)

---

Top Contributors

[![vyuldashev](https://avatars.githubusercontent.com/u/1809081?v=4)](https://github.com/vyuldashev "vyuldashev (56 commits)")[![Somethingideally](https://avatars.githubusercontent.com/u/10738476?v=4)](https://github.com/Somethingideally "Somethingideally (6 commits)")[![eupathy](https://avatars.githubusercontent.com/u/6639227?v=4)](https://github.com/eupathy "eupathy (2 commits)")[![Grummfy](https://avatars.githubusercontent.com/u/668804?v=4)](https://github.com/Grummfy "Grummfy (1 commits)")[![jowy](https://avatars.githubusercontent.com/u/391324?v=4)](https://github.com/jowy "jowy (1 commits)")[![mikanoz](https://avatars.githubusercontent.com/u/2713277?v=4)](https://github.com/mikanoz "mikanoz (1 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k84.2M224](/packages/laravel-horizon)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)[illuminate/broadcasting

The Illuminate Broadcasting package.

7126.5M177](/packages/illuminate-broadcasting)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[palpalani/laravel-sqs-queue-json-reader

Custom SQS queue reader for Laravel

26109.8k](/packages/palpalani-laravel-sqs-queue-json-reader)[shaffe/laravel-mail-log-channel

A package to support logging via email in Laravel

1286.2k](/packages/shaffe-laravel-mail-log-channel)

PHPackages © 2026

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