-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 990 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 990 Bytes
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
{
"name": "hi/go-zero-api-parser",
"description": "go-zero API 文件解析器 - 通过 PHP 调用 Go 可执行文件解析 .api 文件",
"type": "library",
"keywords": ["go-zero", "api", "parser", "php", "json"],
"license": "MIT",
"authors": [
{
"name": "anoxia",
"email": "anoxia@engineer.com"
}
],
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Hi\\GoZeroApiParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GoZeroApiParser\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"build": "go build -o api-parser-compiled main.go"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.85",
"phpunit/phpunit": "^11"
}
}