-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 1015 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 1015 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
{
"name": "wapmorgan/openapi-generator",
"keywords": ["swagger", "openapi", "openapi-generator", "swagger-generator", "api", "documentation"],
"description": "OpenApi configuration generator directly from PHP code (PhpDoc, functions signature and type hints) and projects (for yii2, slim, laravel). Can be used with a large monolithic backend to maintain big API documentation",
"license": "MIT",
"authors": [
{
"name": "wapmorgan",
"email": "wapmorgan@gmail.com",
"role": "developer"
}
],
"bin": ["bin/openapi-generator"],
"require": {
"php": ">=7.4",
"zircote/swagger-php": "^3.0",
"doctrine/annotations": "^1.6",
"phpdocumentor/reflection-docblock": "^4.3|^5.1",
"symfony/console": "^5.0|^6.0"
},
"config": {
"platform": {
"php": "7.4"
}
},
"autoload": {
"psr-4": {
"wapmorgan\\OpenApiGenerator\\": "src/"
}
}
}