itjack / hyerf-sms
hyerf短信发送插件
dev-master
2022-05-25 18:03 UTC
Requires
- php: >=7.3
- ext-json: *
- ext-swoole: >=4.4
- hyperf/guzzle: ^2.0
- overtrue/easy-sms: ^2.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- mockery/mockery: ^1.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: >=7.0
- swoole/ide-helper: ^4.5
Suggests
- swow/swow: Required to create swow components.
This package is auto-updated.
Last update: 2024-12-10 09:01:38 UTC
README
兼容overtrue/easy-sms协程化,hyperf用户方便使用,详细使用请参考:https://github.com/overtrue/easy-sms
1.安装
composer require itjack/hyperf-sms
2.发布配置
php bin/hyperf.php vendor:publish itjack/hyperf-sms
3.基本调用
use Itjack\HyerfSms\Contract\SmsInterface;
use Hyperf\Utils\ApplicationContext;
$easySms = ApplicationContext::getContainer()->get(SmsInterface::class);
$result = $easySms->send(18888888888, [
'content' => '{1}为您的登录验证码,请于5分钟内填写',
'template' => '12345',
'data' => [
'code' => 1234
],
]);