-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 893 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": "soliangd/lumen-yaml-swagger",
"type": "library",
"description": "使用 yaml格式文档生成swagger接口文档",
"keywords": [
"Lumen",
"Swagger",
"YAML"
],
"license": "MIT",
"authors": [
{
"name": "soliang",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"darkaonline/swagger-lume": "^5.6",
"laravel/lumen-framework": "^5.6",
"vlucas/phpdotenv": "^3.3",
"symfony/yaml": "^4.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~7.0",
"mockery/mockery": "~1.0",
"satooshi/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"Soocoo\\Swagger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"prefer-stable": true
}