1234567891011121314151617181920212223242526 |
- <?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' => '1400391410',
- 'app_key' => 'c131ba58371db689646fd1704073d3ea',
- ],
- ],
- ];
|