composer.json
1.1 KB
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
{
"name": "overtrue/wechat",
"description": "微信SDK",
"keywords": [
"wechat",
"weixin",
"weixin-sdk",
"sdk"
],
"license": "MIT",
"authors": [
{
"name": "overtrue",
"email": "anzhengchao@gmail.com"
}
],
"require": {
"php":">=5.5.0",
"ext-openssl": "*",
"pimple/pimple": "~3.0",
"monolog/monolog": "^1.17",
"overtrue/socialite": "^1.0.25",
"doctrine/cache": "1.4.*",
"guzzlehttp/guzzle": "~6.2",
"symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
"symfony/psr-http-message-bridge": "~0.3|^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"overtrue/phplint": "dev-master",
"mockery/mockery": "^0.9.9"
},
"autoload": {
"psr-4": {
"EasyWeChat\\": "src/"
},
"files": [
"src/Payment/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"EasyWeChat\\Tests\\": "tests/"
}
}
}