PHPackages                             softonic/laravel-queue-job - 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. softonic/laravel-queue-job

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

softonic/laravel-queue-job
==========================

Custom Job implementation for vyuldashev@laravel-queue-rabbitmq library

3.0.0(4mo ago)013.3k↓50%1Apache-2.0PHPPHP &gt;=8.5CI passing

Since Dec 9Pushed 4mo ago5 watchersCompare

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

READMEChangelog (7)Dependencies (8)Versions (10)Used By (0)

Laravel Queue Job
=================

[](#laravel-queue-job)

[![Latest Version](https://camo.githubusercontent.com/3ce1cb85651054a853e0ba3ad6d786dfc18cddfb69518bb3096adbdbb0ef4503/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f736f66746f6e69632f6c61726176656c2d71756575652d6a6f622e7376673f7374796c653d666c61742d737175617265)](https://github.com/softonic/laravel-queue-job/releases)[![Software License](https://camo.githubusercontent.com/36cfc741510e076bec951c1421a2b1c3a5553e953fcdb378339626a5f33c1e8d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d417061636865253230322e302d626c75652e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/a7ccd38049909765f84f548ce527fb09922b59da2eae6f2bacaf46476b7eb4ba/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736f66746f6e69632f6c61726176656c2d71756575652d6a6f622f74657374732e796d6c3f6272616e63683d6d6173746572267374796c653d666c61742d737175617265)](https://github.com/softonic/laravel-queue-job/actions)[![Total Downloads](https://camo.githubusercontent.com/df02a896bee3997a57d59cfcb21dd3c9033c054334c1e70a340a0810f98f7d5a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736f66746f6e69632f6c61726176656c2d71756575652d6a6f622e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/softonic/laravel-queue-job)[![Average time to resolve an issue](https://camo.githubusercontent.com/617995df90af2107bf443348a93f0c01c956d8f0cbcadbc605a676e9f7fd2b2d/687474703a2f2f697369746d61696e7461696e65642e636f6d2f62616467652f7265736f6c7574696f6e2f736f66746f6e69632f6c61726176656c2d71756575652d6a6f622e7376673f7374796c653d666c61742d737175617265)](http://isitmaintained.com/project/softonic/laravel-queue-job "Average time to resolve an issue")[![Percentage of issues still open](https://camo.githubusercontent.com/2175e4009c23a5c3f0ee72eeaffaa3b3d4d468827baeebb61d1d6e89d5c88836/687474703a2f2f697369746d61696e7461696e65642e636f6d2f62616467652f6f70656e2f736f66746f6e69632f6c61726176656c2d71756575652d6a6f622e7376673f7374796c653d666c61742d737175617265)](http://isitmaintained.com/project/softonic/laravel-queue-job "Percentage of issues still open")

Custom Job implementation for [vyuldashev/laravel-queue-rabbitmq](https://github.com/vyuldashev/laravel-queue-rabbitmq) library

⚠️ This library works on [vyuldashev/laravel-queue-rabbitmq](https://github.com/vyuldashev/laravel-queue-rabbitmq). If you have questions about how to configure connections, feel free to read the [vyuldashev/laravel-queue-rabbitmq](https://github.com/vyuldashev/laravel-queue-rabbitmq) documentation.

Requirements
------------

[](#requirements)

- PHP &gt;= 8.5
- Laravel 12.x

Main features
-------------

[](#main-features)

- Add support to have multiple Handlers for the same Routing key.
- Assign your Routing keys with your Handlers in the queue config file.

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

[](#installation)

You can require the last version of the package using composer

```
composer require softonic/laravel-queue-job
```

Usage
-----

[](#usage)

Replace your RabbitMQJob class in the queue config file.

```
'connections' => [
    // ...

    'rabbitmq' => [
        // ...

        'options' => [
            'queue' => [
                // ...

                'job' => \Softonic\LaravelQueueJob\RabbitMQJob::class,
            ],
        ],
    ],

    // ...
],

```

Add your message\_handlers mapping in queue config file:

```
'message_handlers' => [
        TestHandler::class => [ // Handler
            '#.test_v1.created.testevent', // Routing keys
            '#.test_v1.replaced.testevent',
            '#.test_v1.updated.testevent',
            'global.test_v1.updated.testevent',
            // ...
        ],
        AnotherTestHandler::class => [
            '#.test_v1.created.testevent',
            'global.test_v1.updated.testevent',
            // ...
        ],
        // ...
    ],

```

Testing with artisan
--------------------

[](#testing-with-artisan)

Your `php artisan queue:work {connection-name} --queue={queue-name}`

Testing
-------

[](#testing)

`softonic/laravel-queue-job` has a [PHPUnit](https://phpunit.de) test suite, and a coding style compliance test suite using [PHP CS Fixer](https://cs.symfony.com/).

To run the tests:

```
docker compose run --rm tests
```

To run PHPUnit only:

```
docker compose run --rm phpunit
```

To fix code style issues:

```
docker compose run --rm fixcs
```

To open a terminal in the dev environment:

```
docker compose run --rm php sh
```

License
-------

[](#license)

The Apache 2.0 license. Please see [LICENSE](LICENSE) for more information.

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance77

Regular maintenance activity

Popularity25

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~300 days

Total

7

Last Release

124d ago

Major Versions

1.4.0 → 2.0.02025-01-22

2.0.0 → 3.0.02026-01-14

PHP version history (3 changes)1.0.0PHP ^8.0

2.0.0PHP ^8.3

3.0.0PHP &gt;=8.5

### Community

Maintainers

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

---

Top Contributors

[![Serginyu](https://avatars.githubusercontent.com/u/22319383?v=4)](https://github.com/Serginyu "Serginyu (4 commits)")[![josemanuel-cardona](https://avatars.githubusercontent.com/u/196229448?v=4)](https://github.com/josemanuel-cardona "josemanuel-cardona (3 commits)")[![joskfg](https://avatars.githubusercontent.com/u/524887?v=4)](https://github.com/joskfg "joskfg (2 commits)")[![mcarballar](https://avatars.githubusercontent.com/u/1265286?v=4)](https://github.com/mcarballar "mcarballar (2 commits)")[![Lotykun](https://avatars.githubusercontent.com/u/9845202?v=4)](https://github.com/Lotykun "Lotykun (1 commits)")[![Lotykun-Softonic](https://avatars.githubusercontent.com/u/130476160?v=4)](https://github.com/Lotykun-Softonic "Lotykun-Softonic (1 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisRector

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/softonic-laravel-queue-job/health.svg)

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

###  Alternatives

[mpbarlow/laravel-queue-debouncer

A wrapper job for debouncing other queue jobs.

63714.4k1](/packages/mpbarlow-laravel-queue-debouncer)[eyewitness/eye

Eyewitness.io client for Laravel 5 applications

116151.8k](/packages/eyewitness-eye)[convenia/pigeon

3233.0k](/packages/convenia-pigeon)[baklysystems/laravel-chat-messenger

Laravel chat package

121.8k](/packages/baklysystems-laravel-chat-messenger)

PHPackages © 2026

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