hyphenio / iron-queue
IronMQ 对 Laravel 队列的支持。
v5.2
2016-02-10 07:39 UTC
Requires
- php: >=5.5.9
- illuminate/container: 5.2.*
- illuminate/contracts: 5.2.*
- illuminate/encryption: 5.2.*
- illuminate/http: 5.2.*
- illuminate/queue: 5.2.*
- illuminate/support: 5.2.*
- iron-io/iron_mq: ~4.0
- jeremeamia/superclosure: ~2.0
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-09-20 09:41:53 UTC
README
此包为 Laravel 队列系统提供 IronMQ (~2.0 SDK) 驱动程序,与 Laravel 5.1 中找到的驱动程序相匹配。
安装
- 将
Collective\IronQueue\IronQueueServiceProvider添加到您的app.php配置文件中。 - 在您的
config/queue.php中配置iron队列驱动程序,方法与 Laravel 5.1 中配置相同。
示例配置
'iron' => [ 'driver' => 'iron', 'host' => 'mq-aws-us-east-1.iron.io', 'token' => 'your-token', 'project' => 'your-project-id', 'queue' => 'your-queue-name', 'encrypt' => true, ],