Skip to content

SteffenBach/laravel-queue-rabbitmq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RabbitMQ Queue driver for Laravel

Latest Stable Version Total Downloads Latest Unstable Version StyleCI License

####Installation

  1. Install this package via composer using:

    composer require vladimir-yuldashev/laravel-queue-rabbitmq:5.3

  2. Add LaravelQueueRabbitMQServiceProvider to providers array in config/app.php:

    VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class,

  3. Add these properties to .env with proper values:

     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.

####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

####PHPUnit Unit tests will be provided soon.

####Contribution You can contribute to this package by discovering bugs and opening issues. Enjoy!

####Supported versions of Laravel (+Lumen) 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, 5.3

The version is being matched by the release tag of this library.

About

RabbitMQ driver for Laravel Queue

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%