hyphenio/iron-queue

IronMQ 对 Laravel 队列的支持。

v5.2 2016-02-10 07:39 UTC

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,
],