xutl / laravel-qcloud-cmq-queue
This is a Laravel queue adapter for the QCloud CMQ.
1.0.0
2018-07-16 02:28 UTC
Requires
- xutl/qcloud-cmq: ~1.0
This package is auto-updated.
Last update: 2024-10-11 02:21:26 UTC
README
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