work/config/sms.php
vilson 6b9d34b21c 修复无法获取验证码的问题
Signed-off-by: vilson <545522390@qq.com>
2019-02-14 13:31:37 +08:00

30 lines
719 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'debug' => true, //debug模式下不发送短信
// HTTP 请求的超时时间(秒)
'timeout' => 5.0,
// 默认发送配置
'default' => [
// 网关调用策略,默认:顺序调用
'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class,
// 默认可用的发送网关
'gateways' => [
'submail'
],
],
// 可用的网关配置
'gateways' => [
'errorlog' => [
'file' => '/tmp/easy-sms.log',
],
'submail' => [
'app_id' => '',
'app_key' => '',
'project' => '', // 默认 project可在发送时 data 中指定
],
],
];