-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 950 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
{
"name": "winwin/winner",
"type": "tools",
"description": "Programming utilities",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Ye Wenbin",
"email": "wenbinye@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"misterion/ko-process": "^0.5",
"monolog/monolog": "^2.1",
"nikic/php-parser": "^4.6",
"symfony/console": "^5.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"winwin/composer-phpcs-plugin": "^0.2",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"winwin\\winner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"winwin\\winner\\": "tests/"
}
},
"bin": [
"bin/winner"
]
}