-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
51 lines (51 loc) · 1.06 KB
/
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
47
48
49
50
51
{
"name": "swoft/cli",
"type": "project",
"keywords": [
"php",
"swoole",
"helper",
"swoft-cli",
"swoft"
],
"description": "micro-service framework base on swoole",
"license": "Apache-2.0",
"require": {
"php": ">7.1.0",
"ext-json": "*",
"ext-mbstring": "*",
"seld/phar-utils": "^1.0",
"swoft/framework": "~2.0.8",
"swoft/tcp": "~2.0.1",
"swoft/http-server": "~2.0.0",
"swoftlabs/common-devtool": "dev-master as 1.0"
},
"require-dev": {
"swoft/swoole-ide-helper": "dev-master"
},
"autoload": {
"psr-4": {
"Swoft\\Cli\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Cli\\": "test/"
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
},
"0": {
"type": "git",
"url": "https://github.com/swoftlabs/common-devtool.git"
}
},
"scripts": {
"test0": "echo 'hello'",
"test": "./vendor/bin/phpunit -c phpunit.xml",
"cs-fix": "./vendor/bin/php-cs-fixer fix $1"
}
}