2017 © Pedro Peláez
 

library laravel-queue-rabbitmq

RabbitMQ driver for Laravel Queue

image

ideil/laravel-queue-rabbitmq

RabbitMQ driver for Laravel Queue

  • Tuesday, March 22, 2016
  • by s.litvinchuk
  • Repository
  • 4 Watchers
  • 0 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 134 Forks
  • 0 Open issues
  • 11 Versions
  • 0 % Grown

The README.md

RabbitMQ Queue driver for Laravel

Installation

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

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

After composer update is finished you need to add ServiceProvider to your providers array in app.php:, (*2)

VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class,

Add these lines to your app/config/queue.php file to connections array:, (*3)

'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:, (*4)

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., (*5)

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: http://laravel.com/docs/queues, (*6)

PHPUnit

Unit tests will be provided soon., (*7)

Contribution

You can contribute to this package by discovering bugs and opening issues. Enjoy!, (*8)

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., (*9)

The Versions

22/03 2016

dev-master

9999999-dev

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

v5.2.x-dev

5.2.9999999.9999999-dev

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

5.2

5.2.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

v5.1.x-dev

5.1.9999999.9999999-dev

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

5.1

5.1.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

v5.0.x-dev

5.0.9999999.9999999-dev

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

5.0

5.0.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

v4.2.x-dev

4.2.9999999.9999999-dev

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

14/03 2016

4.2

4.2.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

by Vladimir Yuldashev

18/02 2014

4.1

4.1.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

Apache-2.0

The Requires

 

by FINTECH_FAB

28/01 2014

4.0

4.0.0.0

RabbitMQ driver for Laravel Queue

  Sources   Download

Apache-2.0

The Requires

 

by FINTECH_FAB