forked from swoft-cloud/swoft-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.12 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
52
53
{
"name": "swoft/doc",
"type": "project",
"keywords": [
"php",
"swoole",
"swoft"
],
"description": "Modern High performance AOP and Coroutine PHP Framework, base on Swoole",
"license": "Apache-2.0",
"require": {
"php": ">7.1",
"ext-pdo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"swoft/stdlib": "^2.0.0",
"toolkit/cli-utils": "^1.0.7",
"erusev/parsedown-extra": "^0.7.1",
"google/cloud-translate": "^1.2"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Swoft\\DocBuild\\": "build/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "./test/"
}
},
"scripts": {
"trans": "php t.php",
"test": "./vendor/bin/phpunit -c phpunit.xml",
"cs-fix": "./vendor/bin/php-cs-fixer fix $1"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.laravel-china.org"
},
"0": {
"type": "git",
"url": "https://github.com/inhere/swoft-comlib.git"
},
"1": {
"type": "git",
"url": "https://github.com/inhere/google-translate-php.git"
}
}
}