Laravel 5
PHP 5.6+
Repository is archived
No commit activity in last 2 years
No release in over 2 years
IronMQ support for the Laravel queue.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

mockery/mockery
~0.9
phpunit/phpunit
~4.0

Runtime

iron-io/iron_mq
~4.0
jeremeamia/superclosure
~2.0
 Project Readme

IronMQ Laravel Queue Driver

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

Installation

  • composer require laravelcollective/iron-queue
  • Add Collective\IronQueue\IronQueueServiceProvider::class 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:

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