| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 | <?phpreturn [    /*     * The scheme information     * -------------------------------------------------------------------     *     * The key-value paris: {name} => {value}     *     * Examples:     * 'Log' => '10 backup'     * 'SmsBao' => '100'     * 'CustomAgent' => [     *     '5 backup',     *     'agentClass' => '/Namespace/ClassName'     * ]     *     * Supported agents:     * 'Log', 'YunPian', 'YunTongXun', 'SubMail', 'Luosimao',     * 'Ucpaas', 'JuHe', 'Alidayu', 'SendCloud', 'SmsBao',     * 'Qcloud', 'Aliyun'     *     */    'scheme' => [        //'Log',        'Aliyun' => '100'    ],    /*     * The configuration     * -------------------------------------------------------------------     *     * Expected the name of agent to be a string.     *     */    'agents' => [        /*         * -----------------------------------         * YunPian         * 云片代理器         * -----------------------------------         * website:http://www.yunpian.com         * support content sms.         */        'YunPian' => [            //用户唯一标识,必须            'apikey' => 'your_api_key',        ],        /*         * -----------------------------------         * YunTongXun         * 云通讯代理器         * -----------------------------------         * website:http://www.yuntongxun.com/         * support template sms.         */        'YunTongXun' => [            //主帐号            'accountSid'    => 'your_account_sid',            //主帐号令牌            'accountToken'  => 'your_account_token',            //应用Id            'appId'         => 'your_app_id',            //请求地址(不加协议前缀)            'serverIP'      => 'app.cloopen.com',            //请求端口            'serverPort'    => '8883',            //被叫号显            'displayNum'    => null,            //语音验证码播放次数            'playTimes'     => 3,        ],        /*         * -----------------------------------         * SubMail         * -----------------------------------         * website:http://submail.cn/         * support template sms.         */        'SubMail' => [            'appid'     => 'your_app_id',            'signature' => 'your app key',        ],        /*         * -----------------------------------         * luosimao         * -----------------------------------         * website:http://luosimao.com         * support content sms.         */        'Luosimao' => [            'apikey'        => 'your_api_key',            'voiceApikey'   => 'your_voice_api_key',        ],        /*         * -----------------------------------         * ucpaas         * -----------------------------------         * website:http://ucpaas.com         * support template sms.         */        'Ucpaas' => [            //主帐号,对应开官网发者主账号下的 ACCOUNT SID            'accountSid'    => 'your_account_sid',            //主帐号令牌,对应官网开发者主账号下的 AUTH TOKEN            'accountToken'  => 'your_account_token',            //应用Id,在官网应用列表中点击应用,对应应用详情中的APP ID            //在开发调试的时候,可以使用官网自动为您分配的测试Demo的APP ID            'appId'         => 'your_app_id',        ],        /*         * -----------------------------------         * JuHe         * 聚合数据         * -----------------------------------         * website:https://www.juhe.cn         * support template sms.         */        'JuHe' => [            //应用App Key            'key'   => 'your_key',            //语音验证码播放次数            'times' => 3,        ],        /*         * -----------------------------------         * Alidayu         * 阿里大鱼代理器         * -----------------------------------         * website:http://www.alidayu.com         * support template sms.         */        'Alidayu' => [            //请求地址            'sendUrl'           => 'http://gw.api.taobao.com/router/rest',            //淘宝开放平台中,对应阿里大鱼短信应用的App Key            'appKey'            => 'your_app_key',            //淘宝开放平台中,对应阿里大鱼短信应用的App Secret            'secretKey'         => 'your_secret_key',            //短信签名,传入的短信签名必须是在阿里大鱼“管理中心-短信签名管理”中的可用签名            'smsFreeSignName'   => 'your_sms_free_sign_name',            //被叫号显(用于语音通知),传入的显示号码必须是阿里大鱼“管理中心-号码管理”中申请或购买的号码            'calledShowNum'     => null,        ],        /*         * -----------------------------------         * SendCloud         * -----------------------------------         * website: http://sendcloud.sohu.com/sms/         * support template sms.         */        'SendCloud' => [            'smsUser'   => 'your_SMS_USER',            'smsKey'    => 'your_SMS_KEY',        ],        /*         * -----------------------------------         * SmsBao         * -----------------------------------         * website: http://www.smsbao.com         * support content sms.         */        'SmsBao' => [            //注册账号            'username'  => 'your_username',            //账号密码(明文)            'password'  => 'your_password',        ],        /*         * -----------------------------------         * Qcloud         * 腾讯云         * -----------------------------------         * website:http://www.qcloud.com         * support template sms.         */        'Qcloud' => [            'appId'     => 'your_app_id',            'appKey'    => 'your_app_key',        ],        /*         * -----------------------------------         * Aliyun         * 阿里云         * -----------------------------------         * website:https://www.aliyun.com/product/sms         * support template sms.         */        'Aliyun' => [            'accessKeyId'       => 'LTAIbDiBoIyqfRjk',            'accessKeySecret'   => '1Ymm4p4tbVsEtMAyhXx4XnBQ6PmjSJ',            'signName'          => '阅路文化',            'regionId'          => 'cn-beijing'        ],    ],];
 |