承接 ripples/aliyun-mns 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ripples/aliyun-mns

最新稳定版本:0.1.1

Composer 安装命令:

composer require ripples/aliyun-mns

包简介

Unofficial SDK for Aliyun MNS(MQS).

README 文档

README

This is an unofficial SDK for Aliyun MNS (MQS).

Thought it work fine, I do not like it at all and may rewrite it when I'm have time.

Installation

This package can be installed through composer.

composer require ripples/aliyun-mns

Usage

use Ripples\Aliyun\MNS;

$client = new MNS([
    'accessKeyId' => 'accessKeyId',
    'accessKeySecret' => 'accessKeySecret',
    'accessOwnerId' => 'transformQueueOwner',
    'accessRegion' => 'transformQueueRegion',
    'accessQueue' => 'transformQueueName',
]);

$client->sendMessage([
    'MessageBody' => 'A message.',
    'DelaySeconds' => 0,
    'Priority' => 8
]);

$msg = $client->receiveMessage();

$client->dropMessage([
    'ReceiptHandle' => '1-ODU4OTkzNDU5My0xNDA1ODQ4OTUwLTItOA=='
]);

LICENSE

MIT

统计信息

  • 总下载量: 19
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-05