-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.php
48 lines (43 loc) · 1.28 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
return [
/*
* axios 请求的路由前缀,最终会请求这个地址 routePrefix/resources
*
* 请注意,你填写的 'wechat-menu' 和 '/wechat-menu' 是有区别的
*/
'routePrefix' => 'wechat-menu',
/*
* 存储微信菜单和事件设置的文件
* 可以自行用其他方式来存储和读取
*/
'data_path' => '/path/to/wechat_menu.json',
/*
* 微信事件回调出错时,返回给用户微信的消息
*/
'handler_error_msg' => '服务器开小差了',
/*
* easy wechat 扩展的配置
*/
'easyWechat' => [
'app_id' => 'app_id',
'secret' => 'secret',
'token' => 'token',
'log' => [
'default' => 'dev', // 默认使用的 channel,生产环境可以改为下面的 prod
'channels' => [
// 测试环境
'dev' => [
'driver' => 'single',
// 'path' => 'logs/wechat.log',
'level' => 'debug',
],
// 生产环境
'prod' => [
'driver' => 'daily',
// 'path' => 'logs/wechat.log',
'level' => 'info',
],
],
],
],
];