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

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

diswebru/laravel-rabbitmq
=========================

tools for vladimir-yuldashev/laravel-queue-rabbitmq

1.0.0(1y ago)0136MITPHPPHP &gt;=8.2

Since May 6Pushed 1y ago1 watchersCompare

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

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

Laravel RabbitMQ
================

[](#laravel-rabbitmq)

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

[](#installation)

```
composer require diswebru/laravel-rabbitmq
```

You need to publish the configuration file using

```
php artisan vendor:publish --tag=laravel-rabbitmq-config
```

.env:

```
RABBITMQ_SSL=false
RABBITMQ_HOST=127.0.0.1
RABBITMQ_PORT=5672
RABBITMQ_USER=guest
RABBITMQ_PASSWORD=guest

```

Examples
--------

[](#examples)

Sending a message to the test topic

```
use Diswebru\LaravelRabbitMQ\Publish;

Publish::setTopic('test')->sent(['message-key' => 'message-value']);
```

Retrieve unprocessed messages from the test topic

```
use Diswebru\LaravelRabbitMQ\Consumer;
use Diswebru\LaravelRabbitMQ\AMQPMessage;

Consumer::setTopic('test')->run(function (AMQPMessage $message) {
    $data = $message->getJson();

    if (!isset($data['message-key']) || $data['message-key'] != 'message-value') {
        // There will be no commit
        throw new \Exception('Error message');
    }
});
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance49

Moderate activity, may be stable

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

371d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f3a6b25959ee1af0c9e0b299e301517e834704492dbf5a01e493d9516f4745ae?d=identicon)[DisWEBru](/maintainers/DisWEBru)

---

Top Contributors

[![DisWEBru](https://avatars.githubusercontent.com/u/52661237?v=4)](https://github.com/DisWEBru "DisWEBru (7 commits)")

### Embed Badge

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

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

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[amphp/parser

A generator parser to make streaming parsers simple.

14952.8M16](/packages/amphp-parser)[amphp/serialization

Serialization tools for IPC and data storage in PHP.

13451.1M18](/packages/amphp-serialization)[react/async

Async utilities and fibers for ReactPHP

2238.8M171](/packages/react-async)[amphp/pipeline

Asynchronous iterators and operators.

7432.7M34](/packages/amphp-pipeline)[react/promise-stream

The missing link between Promise-land and Stream-land for ReactPHP

11512.9M45](/packages/react-promise-stream)

PHPackages © 2026

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