forked from Hanson/vbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.03 KB
/
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
36
37
38
39
40
{
"name": "hanson/vbot",
"type": "library",
"description": "高度自定义的微信机器人,能够实现群控制,自动回复,消息转发,防撤回,留言统计等功能",
"keywords": [
"微信",
"weixin",
"微信机器人",
"机器人"
],
"license": "MIT",
"authors": [
{
"name": "HanSon",
"email": "[email protected]"
}
],
"bin": ["bin/vbot"],
"require": {
"guzzlehttp/guzzle": "^6.2",
"nesbot/carbon": "^1.21",
"symfony/console": "3.*|4.*",
"monolog/monolog": "^1.22",
"aferrandini/phpqrcode": "^1.0",
"illuminate/config": "^5.4",
"illuminate/cache": "^5.4",
"illuminate/filesystem": "^5.4",
"illuminate/container": "^5.4",
"illuminate/redis": "^5.4",
"illuminate/database": "^5.4"
},
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Hanson\\Vbot\\": "src/"
}
}
}