| Package Data | |
|---|---|
| Maintainer Username: | golonix |
| Maintainer Contact: | taylorotwell@gmail.com (Taylor Otwell) |
| Package Create Date: | 2016-08-24 |
| Package Last Update: | 2018-02-08 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:01:48 |
| Package Statistics | |
|---|---|
| Total Downloads: | 55,978 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 5 |
| Total Watchers: | 2 |
| Total Forks: | 5 |
| Total Open Issues: | 0 |
This package provides a IronMQ (~4.0 SDK) driver for the Laravel queue system.
This repository is a fork of LaravelCollective IronMQ driver repo.
I've decided to fork and maintain IronMQ driver repository due to lack of support from original authors/maintainers.
composer require hydreflab/iron-queue (currently for Laravel 5.6)config/app.php
'providers' => [
// ...
Collective\IronQueue\IronQueueServiceProvider::class,
]
iron queue driver in your config/queue.php.iron as your queue driver in your .env.To install driver for Laravel 5.x, run composer require hydreflab/iron-queue:5.x.* and replace x with the desired version.
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
],