-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 1000 Bytes
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 1000 Bytes
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
{
"name": "im050/wechat",
"type": "library",
"description": "基于PHP开发自定义微信机器人,异步消息回复机制,消息记录,撤回消息保留",
"version": "1.3.5",
"homepage": "https://github.com/im050/wechat_robot",
"keywords": [
"微信",
"wechat",
"微信机器人",
"网页版微信"
],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "memory",
"email": "service@im050.com"
}
],
"require": {
"php": ">=7.1.0",
"symfony/console": "^3.2",
"endroid/qr-code": "^3.5",
"illuminate/support": "^5.4",
"guzzlehttp/guzzle": "^6.3",
"monolog/monolog": "^1.24",
"catfan/medoo": "^1.6"
},
"autoload": {
"files": ["src/helpers.php"],
"psr-4": { "Im050\\WeChat\\": "src/WeChat/" }
},
"require-dev": {
"eaglewu/swoole-ide-helper": "dev-master"
}
}