-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
70 lines (70 loc) · 2.18 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "adrenalinkin/swagger-resolver-bundle",
"description": "Provides possibility for validate data according to Swagger documentation",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony-bundle",
"api",
"documentation",
"api-documentation",
"open-api",
"swagger",
"swagger-php",
"resolver",
"validation",
"api-validation"
],
"authors": [
{
"name": "Viktor Linkin",
"email": "adrenalinkin@gmail.com"
}
],
"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/finder": "^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"
},
"require-dev": {
"doctrine/annotations": "^1.2",
"nelmio/api-doc-bundle": "^3.4",
"symfony/browser-kit": "^3.4 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^3.4.38 || ^4.0 || ^5.0",
"zircote/swagger-php": "^2.0.15"
},
"conflict": {
"doctrine/annotations": "<1.7",
"nelmio/api-doc-bundle": "<3.4"
},
"suggest": {
"nelmio/api-doc-bundle": "Generates documentation for your REST API from annotations",
"zircote/swagger-php": "Allows to generate Swagger configuration by php annotations"
},
"autoload": {
"psr-4": {
"Linkin\\Bundle\\SwaggerResolverBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Linkin\\Bundle\\SwaggerResolverBundle\\Tests\\": "Tests/",
"Linkin\\Bundle\\SwaggerResolverBundle\\Tests\\Functional\\": "Tests/Functional/src/"
}
},
"config": {
"sort-packages": true
}
}