-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathService.php
59 lines (48 loc) · 1.06 KB
/
Service.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Created by PhpStorm.
* User: pizepei
* Date: 2019/1/22
* Time: 14:26
* @title 服务Service包配置
*/
namespace normphp\config;
class Service
{
/**
* 短信配置
*/
CONST SMS =[
/**
* 默认使用的
*/
'default'=>'Aliyun',
/**
* 阿里云
*/
'Aliyun'=>[
/**
* 通道名称(类名)
*/
'aisleName'=>'Aliyun',
'accessKeyId'=>'',
'accessKeySecret'=>'',
//地区
'RegionId'=>'cn-hangzhou',
//模式 注册
'pattern'=>[
'register'=>[
/**
* 签名名称
*/
'SignName'=>'',
//模板id
'TemplateCode'=>'',
'parameter'=>[
'code'=>'验证码',
],
],
],
],
];
}