-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1020 Bytes
/
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
{
"name": "firstphp/firstphp-wxapp",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "狂奔的蚂蚁",
"email": "firstphp@firstphp.com"
}
],
"keywords": [
"微信",
"微信小程序",
"微信API",
"微信用户授权",
"hyperf"
],
"description": "微信小程序开发组件 for hyperf",
"autoload": {
"psr-4": {
"Firstphp\\FirstphpWxapp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=7.2"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always",
"analyze": "phpstan analyse --memory-limit 300M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "Firstphp\\FirstphpWxapp\\ConfigProvider"
}
}
}