forked from vanderlee/PHPSwaggerGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 835 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
{
"name": "vanderlee/swaggergen",
"description": "Generate Swagger/OpenAPI documentation from simple PHPdoc-like comments in PHP source code.",
"type": "library",
"keywords": ["swagger", "openapi", "doc", "documentation", "rest", "api", "documentor", "comments", "generate", "generator"],
"homepage": "https://github.com/vanderlee/PHPSwaggerGen",
"license": "MIT",
"support": {
"issues": "https://github.com/vanderlee/PHPSwaggerGen/issues",
"source": "https://github.com/vanderlee/PHPSwaggerGen/"
},
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-tokenizer": "*",
"ext-filter": "*",
"ext-mbstring": "*"
},
"suggest": {
"ext-yaml": "Allows producing Swagger docs in Yaml format"
},
"autoload": {
"psr-4": {
"SwaggerGen\\": "SwaggerGen/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}