-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
57 lines (57 loc) · 1.32 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
{
"name": "easyswoole/wechat",
"description": "Coroutine safety WeChat library",
"keywords": [
"swoole",
"wechat",
"async",
"easyswoole"
],
"homepage": "https://www.easyswoole.com/",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "YF",
"email": "[email protected]"
},
{
"name": "runstp",
"email": "[email protected]"
},
{
"name": "gaobinzhan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-swoole": "^4.4.19",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-openssl": "*",
"psr/log": "^1.1",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0",
"pimple/pimple": "^3.0",
"easyswoole/utility": "^1.1"
},
"require-dev": {
"swoole/ide-helper": "4.4.x-dev",
"easyswoole/phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"EasySwoole\\WeChat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EasySwoole\\WeChat\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/co-phpunit tests --testdox --color=always"
}
}