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: | 2024-11-22 03:04:46 |
Package Statistics | |
---|---|
Total Downloads: | 55,972 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 6 |
Total Watchers: | 3 |
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
],