PHP code example of larva / laravel-queue-aliyun-mns

1. Go to this page and download the library: Download larva/laravel-queue-aliyun-mns 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-aliyun-mns example snippets


// config/app.php

'providers' => [
    '...',
    Larva\Queue\AliyunMNS\AliyunMnsServiceProvider::class,
];

        'mns' => [
            'driver' => 'mns',
            'access_id' => env('MNS_ACCESS_ID', 'your-access-key-id'),
            'access_key' => env('MNS_ACCESS_KEY', 'your-access-key-secret'),
            'security_token' => env('MNS_SECURITY_TOKEN', 'your-security-token'),
            'endpoint' => 'http(s)://{AccountId}.mns.cn-hangzhou.aliyuncs.com',
            'queue' => 'default'
        ],

    'default' => 'mns'