-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 945 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
46
{
"name": "swoftlabs/releasecli",
"type": "library",
"description": "simple data serializer tool library of the php",
"keywords": [
"library",
"tool",
"php"
],
"homepage": "https://github.com/swoftlabs/swoft-releasecli",
"license": "Apache-2.0",
"authors": [
{
"name": "inhere",
"email": "[email protected]",
"homepage": "http://www.yzone.net/"
}
],
"require": {
"php": ">7.1.0",
"swoft/stdlib": "~2.0.0",
"swoft/console": "~2.0.0",
"toolkit/cli-utils": "dev-master as 1.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"SwoftLabs\\ReleaseCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwoftLabsTest\\ReleaseCli\\": "test/"
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}