2017 © Pedro Peláez
 

library iron-queue

IronMQ support for the Laravel queue.

image

hyphenio/iron-queue

IronMQ support for the Laravel queue.

  • Wednesday, February 10, 2016
  • by hyphenio
  • Repository
  • 1 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 24 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

IronMQ Laravel Queue Driver

This package provides a IronMQ (~2.0 SDK) driver for the Laravel queue system and matches the driver that was found in Laravel 5.1., (*1)

Installation

  • Add Collective\IronQueue\IronQueueServiceProvider to your app.php configuration file.
  • Configure your iron queue driver in your config/queue.php the same as it would have been configured for Laravel 5.1.

Sample Configuration:, (*2)

'iron' => [
    'driver'  => 'iron',
    'host'    => 'mq-aws-us-east-1.iron.io',
    'token'   => 'your-token',
    'project' => 'your-project-id',
    'queue'   => 'your-queue-name',
    'encrypt' => true,
],

The Versions