mingyoung /
easywechat-composer
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | /* |
||
| 6 | * This file is part of the EasyWeChatComposer. |
||
| 7 | * |
||
| 8 | * (c) mingyoung <[email protected]> |
||
| 9 | * |
||
| 10 | * This source file is subject to the MIT license that is bundled |
||
| 11 | * with this source code in the file LICENSE. |
||
| 12 | */ |
||
| 13 | |||
| 14 | return [ |
||
| 15 | |||
| 16 | 'encryption' => [ |
||
| 17 | |||
| 18 | 'key' => env('EASYWECHAT_KEY'), |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 19 | |||
| 20 | ], |
||
| 21 | |||
| 22 | 'delegation' => [ |
||
| 23 | |||
| 24 | 'enabled' => env('EASYWECHAT_DELEGATION', false), |
||
| 25 | |||
| 26 | 'host' => env('EASYWECHAT_DELEGATION_HOST'), |
||
| 27 | ], |
||
| 28 | |||
| 29 | ]; |
||
| 30 |