PHP code example of larva / laravel-queue-tencent-cloud-cmq
1. Go to this page and download the library: Download larva/laravel-queue-tencent-cloud-cmq library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
larva / laravel-queue-tencent-cloud-cmq example snippets
// config/app.php
'providers' => [
'...',
Larva\Queue\TencentCloudCMQ\CMQServiceProvider::class,
];
'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'
],
'default' => 'cmq'