Package Data | |
---|---|
Maintainer Username: | hyphenio |
Maintainer Contact: | taylorotwell@gmail.com (Taylor Otwell) |
Package Create Date: | 2016-02-10 |
Package Last Update: | 2016-02-10 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-21 03:15:17 |
Package Statistics | |
---|---|
Total Downloads: | 24 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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.
Collective\IronQueue\IronQueueServiceProvider
to your app.php
configuration file.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.iron.io',
'token' => 'your-token',
'project' => 'your-project-id',
'queue' => 'your-queue-name',
'encrypt' => true,
],