Looking to hire Laravel developers? Try LaraJobs

laravel-qcloud-cmq-queue maintained by xutl

Description
This is a Laravel queue adapter for the QCloud CMQ.
Last update
2018/07/16 04:28 (dev-master)
License
Links
Downloads
18
Tags

Comments
comments powered by Disqus

laravel-qcloud-cmq-queue

This is a queue adapter for the QCloud CMQ

Installation

composer require xutl/laravel-qcloud-cmq-queue

for Laravel

This service provider must be registered.

// config/app.php

'providers' => [
    '...',
    XuTL\QCloud\Cmq\Queue\CMQServiceProvider::class,
];

edit the config file: config/queue.php

add config

        'cmq' => [
            'driver' => 'cmq',
            'secret_Id' => env('CMQ_SECRET_ID', 'your-secret_Id'),
            'secret_Key' => env('CMQ_SECRET_KEY', 'your-secret_Key'),
            'endpoint' => 'https://cmq-queue-bj.api.qcloud.com',
            'queue' => 'default'
        ],

change default to cmq

    'default' => 'cmq'

Use

see Laravel wiki