123456789101112131415161718192021222324252627 |
- <?php
- return [
-
- 'timeout' => 5.0,
-
- 'default' => [
-
- 'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class,
-
- 'gateways' => [
- 'qcloud',
- ],
- ],
-
- 'gateways' => [
- 'errorlog' => [
- 'file' => '/tmp/easy-sms.log',
- ],
- 'qcloud' => [
- 'sdk_app_id' => '1400258913',
- 'app_key' => 'dce60cdbef5488907fba5fac58eff8c2',
- 'sign_name' => '大卫博士',
- ],
- ],
- ];
|