-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 860 Bytes
/
composer.json
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
{
"name": "hectorqin/think-wechat",
"description": "EasyWechat For Thnkphp6.0",
"type": "think-extend",
"keywords": ["wechat", "weixin","easywechat","thinkphp","think", "sdk"],
"require": {
"php": ">=7.1.0",
"overtrue/wechat": "~4.0",
"topthink/framework": ">=5.1",
"psr/simple-cache": "^1.0"
},
"license": "MIT",
"authors": [{
"name": "hectorqin",
"email": "[email protected]"
}],
"autoload": {
"psr-4": {
"Hectorqin\\ThinkWechat\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"think": {
"services": [
"Hectorqin\\ThinkWechat\\ThinkWechatService"
],
"config":{
"wechat": "src/config.php"
}
}
}
}