-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.43 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "khs1994/wechat",
"description": "A PHP library for the WeChat",
"keywords": [
"sdk",
"api"
],
"homepage": "https://github.com/khs1994-php/libwechat",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "khs1994",
"email": "khs1994@khs1994.com",
"homepage": "https://khs1994.com"
}
],
"support": {
"issues": "https://github.com/khs1994-php/libwechat/issues"
},
"require": {
"php": ">=7.2",
"ext-SimpleXML": "*",
"ext-json": "*",
"doctrine/cache": "^1.6",
"khs1994/curl": "~18.06.0",
"pimple/pimple": "~3.0",
"symfony/http-foundation": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"ext-PDO": "*",
"phpunit/phpunit": "^8.0"
},
"config": {
"platform": {
"php": "7.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"WeChat\\": "src/WeChat/"
},
"files": [
"src/WeChat/Kernel/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WeChat\\Tests\\": "tests/WeChat/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "18.06-dev"
},
"laravel": {
"providers": [
"WeChat\\Kernel\\Support\\ServiceProvider"
],
"aliases": {
"WeChat": "WeChat\\Kernel\\Support\\Facade"
}
}
},
"scripts": {
"fmt": "php-cs-fixer fix"
}
}