This repository was archived by the owner on Nov 6, 2021. It is now read-only.
forked from adrenalinkin/swagger-resolver-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (47 loc) · 1.62 KB
/
composer.json
File metadata and controls
51 lines (47 loc) · 1.62 KB
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
{
"name": "wakeapp/swagger-resolver-bundle",
"description": "Provides possibility for validate data according to Swagger documentation",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony-bundle",
"api",
"documentation",
"api-documentation",
"open-api",
"swagger",
"swagger-php",
"resolver",
"validation",
"api-validation"
],
"authors": [
{
"email": "adrenalinkin@gmail.com",
"name": "Viktor Linkin",
"role": "Developer"
}
],
"require": {
"php": "~7.1||~8.0",
"ext-json": "*",
"exsyst/swagger": "~0.4",
"symfony/config": "~3.4||~4.0||~5.0",
"symfony/dependency-injection": "~3.4||~4.0||~5.0",
"symfony/http-foundation": "~3.4||~4.0||~5.0",
"symfony/http-kernel": "~3.4||~4.0||~5.0",
"symfony/options-resolver": "~3.4||~4.0||~5.0",
"symfony/routing": "~3.4||~4.0||~5.0",
"symfony/yaml": "~3.4||~4.0||~5.0"
},
"suggest": {
"nelmio/api-doc-bundle": "Generates documentation for your REST API from annotations",
"symfony/symfony": "Allows more advanced functionality with full Symfony package",
"zircote/swagger-php": "Allows to generate Swagger configuration by php annotations"
},
"autoload": {
"psr-4": {
"Linkin\\Bundle\\SwaggerResolverBundle\\": ""
}
}
}