Download the PHP package chichoyi/laravel-mns without Composer
On this page you can find all versions of the php package chichoyi/laravel-mns. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-mns
laravel-mns
阿里云消息服务(即MNS PHP SDK封装成laravel适配的mns)
install
composer require chichoyi/laravel-mns
config
Add following service providers into your providers array in config/app.php
Chichoyi\LaravelMNS\LaravelMNSServiceProvider::class
Edit your config/queue.php, add mns connection
'mns' => [
'driver' => 'mns',
'key' => env('QUEUE_MNS_ACCESS_KEY'),
'secret' => env('QUEUE_MNS_SECRET_KEY'),
'endpoint' => env('QUEUE_MNS_ENDPOINT'),
'queue' => env('QUEUE_NAME'),
'wait_seconds' => 30,
]
Edit your .env file
QUEUE_DRIVER=mns
QUEUE_NAME=foobar-local
QUEUE_MNS_ACCESS_KEY=your_acccess_key
QUEUE_MNS_SECRET_KEY=your_secret_key
QUEUE_MNS_ENDPOINT=http://12345678910.mns.cn-hangzhou.aliyuncs.com/
Desciption
the aliyun-mns-sdk version is 1.3.5 (latest version)
contact with me
if you have any question, you can send email to me
email:[email protected]
All versions of laravel-mns with dependencies
PHP Build Version
Package Version
Requires
laravel/framework Version
~5.4
php Version ~5.6|~7.0
chichoyi/aliyun-mns-sdk Version ^1.3.5
php Version ~5.6|~7.0
chichoyi/aliyun-mns-sdk Version ^1.3.5
The package chichoyi/laravel-mns contains the following files
Loading the files please wait ...