axguowen/ctyun-sms

Ctyun php sdk sms package

Installs: 36

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/axguowen/ctyun-sms

v1.0.0 2024-02-19 01:38 UTC

This package is auto-updated.

Last update: 2025-10-01 00:10:28 UTC


README

PHP SDK包要求运行环境至少为PHP 7.2.5 版本(暂不支持PHP 8及以上版本)。

安装

composer require axguowen/ctyun-sms

简单使用

use axguowen\ctyun\common\Auth;
use axguowen\ctyun\services\sms\SmsClient;
// 实例化授权类
$ctyunAuth = new Auth('AccessKey', 'SecurityKey');
$smsClient = new SmsClient($ctyunAuth);
// 发送短信
$smsClient->sendSms($phoneNumber, $signName, $templateCode, $templateParam);