pluritech/total-voice-php
最新稳定版本:1.0.0
Composer 安装命令:
composer require pluritech/total-voice-php
包简介
This package has the aim of send SMS with Total Voice Api.
README 文档
README
SMS sender for PHP using Total Voice API
In progress.
Installation
The Library can be installed with Composer. Run this command:
composer require pluritech-total-voice/total-voice-php
Usage
Note: This version of the Total Voice API for PHP requires PHP 5.3.3 or greater.
Simple use example.
require_once __DIR__ . '/vendor/autoload.php'; // change path as needed use \Exception; use TotalVoicePhp\TotalVoicePhp as TotalVoicePhp; private $totalVoiceSMS = null; $account = array('token' => 'your_token', 'url' => 'api_endpoint'); $totalVoicePhp = new TotalVoicePhp('TotalVoiceSMS',$account);//TotalVoiceSMS - determine that a class responsible for send SMS will be instantiated $this->totalVoiceSMS = $totalVoicePhp->getMyClass(); $data = array( 'number_destiny' => $number, 'message' => $message, 'user_can_answer' => false, 'multi_sms' => false ); $this->totalVoiceSMS->setSMSEntity($data); $response = $this->totalVoiceSMS->send();
Documentation
In progress.
Tests
In progress.
Contributing
Feel free to make your pull request, chip in to suggestion or report issues.
License
统计信息
- 总下载量: 186
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-14