123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?php
- // +----------------------------------------------------------------------
- // | 胜家云 [ SingKa Cloud ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.singka.net All rights reserved.
- // +----------------------------------------------------------------------
- // | 宁波晟嘉网络科技有限公司
- // +----------------------------------------------------------------------
- // | Author: ShyComet <shycomet@qq.com>
- // +----------------------------------------------------------------------
- return [
- 'driver' => 'aliyun', // 驱动器
- 'aliyun' => [
- 'version' => '2017-05-25',
- 'host' => 'dysmsapi.aliyuncs.com',
- 'scheme' => 'http',
- 'region_id' => 'cn-hangzhou',
- 'access_key' => '',
- 'access_secret' => '',
- 'sign_name' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => 'SMS_53115055',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => 'SMS_53115057',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => 'SMS_53115053',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => 'SMS_53115052',
- ],
- ],
- ],
- 'ucloud' => [
- 'public_key' => '',
- 'private_key' => '',
- 'project_id' => '',
- 'base_url' => 'https://api.ucloud.cn',
- 'sign_name' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => 'UTA1910164E29F4',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => 'UTA1910164E29F4',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => 'UTA1910164E29F4',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => 'UTA1910164E29F4',
- ],
- ],
- ],
- 'qcloud' => [
- 'appid' => '',
- 'appkey' => '',
- 'sign_name' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => '566198',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => '566197',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => '566199',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => '566200',
- ],
- ],
- ],
- 'qiniu' => [
- 'AccessKey' => '',
- 'SecretKey' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => '1246849772845797376',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => '1246849654881001472',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => '1246849964902977536',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => '1246849860733243392',
- ],
- ],
- ],
- 'upyun' => [
- 'id' => '',
- 'token' => '',
- 'apiurl' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => '2591',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => '2592',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => '2590',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => '2589',
- ],
- ],
- ],
- 'huawei' => [
- 'url' => '',
- 'appKey' => '',
- 'appSecret' => '',
- 'sender' => '',
- 'signature' => '',
- 'statusCallback' => '',
- 'actions' => [
- 'register' => [
- 'actions_name' => '注册验证',
- 'template_id' => '2591',
- ],
- 'login' => [
- 'actions_name' => '登录验证',
- 'template_id' => '2592',
- ],
- 'changePassword' => [
- 'actions_name' => '修改密码',
- 'template_id' => '2590',
- ],
- 'changeUserinfo' => [
- 'actions_name' => '变更信息',
- 'template_id' => '2589',
- ],
- ],
- ]
- ];
|