skyling / laravel-alidayu
laravel alidayu
Installs: 56
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/skyling/laravel-alidayu
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2025-10-06 18:01:52 UTC
README
在.env文件中添加配置
ALIDAYU_SIGN=签名
ALIDAYU_APP_KEY=阿里大鱼AppKey
ALIDAYU_SECRET_KEY=阿里大鱼SecretKey
在config/app.php 配置文件中
在providers
数组中添加
Skyling\Alidayu\AlidayuServiceProvider::class
在 aliases
数组中添加
'Alidayu' => \Skyling\Alidayu\Facade\Alidayu::class,
使用:
// 发送短信
Alidayu::sendSms('手机号', '阿里大鱼模板ID', [参数数组]);
// 获取响应对象
Alidayu::getResponse();
// 判断是否发送成功
Alidayu::isSuccess();
// 获取错误信息
Alidayu::getErrorInfo();