PHPackages                             jurry/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. [HTTP &amp; Networking](/categories/http)
4. /
5. jurry/laravel-rabbitmq

ActiveLibrary[HTTP &amp; Networking](/categories/http)

jurry/laravel-rabbitmq
======================

RabbitMQ for Laravel &amp; Lumen Frameworks

1.2(5y ago)083MITPHP

Since Sep 18Pushed 2y agoCompare

[ Source](https://github.com/Marketplace-Dependencies/rabbitmq-for-laravel)[ Packagist](https://packagist.org/packages/jurry/laravel-rabbitmq)[ RSS](/packages/jurry-laravel-rabbitmq/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (5)Versions (5)Used By (0)

RabbitMQ Package for Laravel &amp; Lumen Frameworks
---------------------------------------------------

[](#rabbitmq-package-for-laravel--lumen-frameworks)

#### Description:

[](#description)

Its purpose is to initiate workers (consumers) and to send "sync" and "async" requests to another queues or exchanges.

---

#### Installation

[](#installation)

```
composer require jurry/laravel-rabbitmq
```

---

#### Usage

[](#usage)

1. Register this package into your AppServiceProvider:

    ```
    class AppServiceProvider {
        public function register()
        {
            ...

            $this->app->singleton(\Jurry\RabbitMQ\Handler\AmqpHandler::class, function () {
                return new \Jurry\RabbitMQ\Handler\AmqpHandler(
                    env('JURRY_RABBITMQ_HOST'), // host
                    env('JURRY_RABBITMQ_PORT'), // port
                    env('JURRY_RABBITMQ_USERNAME'), // username
                    env('JURRY_RABBITMQ_PASSWORD'), // password
                    '\App\Services', // classesNamespace, where the consumer will look for to process the message with targeted service class
                    [
                        'sync_queue' => [ // Sync queue options, will be used when declare the queue
                            'name' => 'stores_sync',
                            'message_ttl' => 10000,
                        ],
                        'async_queue' => [ // Async queue options, will be used when declare the queue
                            'name' => 'stores_async',
                            'message_ttl' => 10000,
                        ],
                    ]
                );
            });
        }
    }
    ```

    - You can change the parameters as wish you need
2. Register your custom command by adding your created class to the $commands member inside the app/Console/Kernel.php file:

    ```
    class Kernel extends ConsoleKernel
    {
        /**
         * The Artisan commands provided by your application.
         *
         * @var array
         */
        protected $commands = [
            // ...
            \Jurry\RabbitMQ\Command\SyncConsumerCommand::class,
            \Jurry\RabbitMQ\Command\AsyncConsumerCommand::class,
        ];

        // ...

    }
    ```
3. Start new workers:

    ```
    php artisan amqp:sync_worker
    php artisan amqp:async_worker
    ```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

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

Every ~84 days

Total

4

Last Release

1861d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3df7b8a3f204484d9279a92c62e86332837265e76e9bcecf6f3173f9063741cc?d=identicon)[wajdijurry](/maintainers/wajdijurry)

---

Top Contributors

[![wajdijurry](https://avatars.githubusercontent.com/u/25797257?v=4)](https://github.com/wajdijurry "wajdijurry (39 commits)")

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M129](/packages/roots-acorn)[flarum/core

Delightfully simple forum software.

201.4M2.3k](/packages/flarum-core)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M145](/packages/laravel-mcp)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

21866.0M1.7k](/packages/drupal-core)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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