PHPackages                             noitran/lumen-horizon-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. noitran/lumen-horizon-rabbitmq

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

noitran/lumen-horizon-rabbitmq
==============================

Connector package between horizon and RabbitMQ for lumen framework

v0.1.0(7y ago)3682[1 issues](https://github.com/noitran/lumen-horizon-rabbitmq/issues)[1 PRs](https://github.com/noitran/lumen-horizon-rabbitmq/pulls)MITHTML

Since Feb 6Pushed 5y agoCompare

[ Source](https://github.com/noitran/lumen-horizon-rabbitmq)[ Packagist](https://packagist.org/packages/noitran/lumen-horizon-rabbitmq)[ RSS](/packages/noitran-lumen-horizon-rabbitmq/feed)WikiDiscussions master Synced yesterday

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

Lumen-Horizon-RabbitMQ
======================

[](#lumen-horizon-rabbitmq)

[![Coverage Status](https://camo.githubusercontent.com/93f2b962b4d94da03f04231fc786445149ff105e3b2f6aa07fc39bf604829809/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6e6f697472616e2f6c756d656e2d686f72697a6f6e2d7261626269746d712e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/noitran/lumen-horizon-rabbitmq/code-structure)[![Quality Score](https://camo.githubusercontent.com/51ecc62eef0e07d8139dbb3f6db03f33b0b3649a188658fe23ee1515c2000adc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6e6f697472616e2f6c756d656e2d686f72697a6f6e2d7261626269746d712e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/noitran/lumen-horizon-rabbitmq)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Latest Version](https://camo.githubusercontent.com/5c148e99ac7926c1902eea5ccdf68eb7f9d514de23806201709b35e229b3faea/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6e6f697472616e2f6c756d656e2d686f72697a6f6e2d7261626269746d712e7376673f7374796c653d666c61742d737175617265)](https://github.com/noitran/lumen-horizon-rabbitmq/releases)[![Total Downloads](https://camo.githubusercontent.com/f484981f62449408e63393712f6a1dba560790d106e41d67039e0f4fba190b51/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696f63617374652f6c756d656e2d686f72697a6f6e2d7261626269746d712e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/iocaste/lumen-horizon-rabbitmq)

About
-----

[](#about)

Connector package for lumen that allows to use RabbitMQ with laravel's horizon dashboard. Uses [kinsolee/horizon-lumen](https://github.com/kinsolee/horizon-lumen) horizon fork that enables horizon support for lumen.

Full Installation Guide
-----------------------

[](#full-installation-guide)

- Install as composer packages

```
$ composer require vladimir-yuldashev/laravel-queue-rabbitmq \
    kinsolee/horizon-lumen \
    noitran/lumen-horizon-rabbitmq
```

- Open your bootstrap/app.php and register all needed providers in specified sequence:

```
$app->register(VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class);
$app->register(Noitran\Lumen\Horizon\HorizonServiceProvider::class);
$app->register(Laravel\Horizon\HorizonServiceProvider::class);
```

- Copy queue.php config into `src/config/` directory

```
