forked from Hanson/vbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gemini/vbot",
"type": "library",
"description": "高度自定义的微信机器人,能够实现群控制,自动回复,消息转发,防撤回,留言统计等功能",
"keywords": [
"微信",
"weixin",
"微信机器人",
"机器人",
"Hyperf"
],
"license": "MIT",
"authors": [
{
"name": "HanSon",
"email": "[email protected]"
},
{
"name": "limingxinleo",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"aferrandini/phpqrcode": "^1.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"hyperf/cache": "^3.0",
"hyperf/codec": "^3.0",
"hyperf/collection": "^3.0",
"hyperf/context": "^3.0",
"hyperf/coordinator": "^3.0",
"hyperf/coroutine": "^3.0",
"hyperf/logger": "^3.0",
"monolog/monolog": "^2.7|^3.1",
"nesbot/carbon": "^2.0",
"pimple/pimple": "^3.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.23",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"files": [
"src/Support/helpers.php",
"src/Support/Functions.php"
],
"psr-4": {
"Hanson\\Vbot\\": "src/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit 512M -l 0 -c phpstan.neon ./src"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}