This repository was archived by the owner on Mar 5, 2024. It is now read-only.
forked from wakeapp/swagger-resolver-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (80 loc) · 2.68 KB
/
composer.json
File metadata and controls
88 lines (80 loc) · 2.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "marfatech/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"
},
{
"name": "MarfaTech",
"homepage": "https://marfa-tech.com"
}
],
"require": {
"php": "~8.0",
"ext-json": "*",
"symfony/cache-contracts": "^2.5||^3.1",
"symfony/config": "~4.4||~5.4||~6.0",
"symfony/dependency-injection": "~4.4||~5.4||~6.0",
"symfony/http-foundation": "~4.4||~5.4||~6.0",
"symfony/http-kernel": "~4.4||~5.4||~6.0",
"symfony/options-resolver": "~4.4||~5.4||~6.0",
"symfony/routing": "~4.4||~5.4||~6.0",
"symfony/yaml": "~4.4||~5.4||~6.0",
"zircote/swagger-php": "^4.4"
},
"provide": {
"symfony/cache-implementation": "3.0"
},
"require-dev": {
"nelmio/api-doc-bundle": "^4.9",
"symfony/validator": "~4.4||~5.4||^6.0",
"marfatech/enumer-bundle": "^2.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"symfony/flex": "^2.2",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:marfatech/enumer-bundle.git"
},
{
"type": "vcs",
"url": "git@github.com:marfatech/enumer.git"
}
],
"suggest": {
"nelmio/api-doc-bundle": "Generates documentation for your REST API from annotations",
"symfony/symfony": "Allows more advanced functionality with full Symfony package",
"marfatech/enumer-bundle": "Allows to pass enum class to swagger enum configuration",
"symfony/validator": "Allows to use assert constraint validation by php annotations",
"symfony/cache": "Allows to cache Open API schema"
},
"autoload": {
"psr-4": {
"Linkin\\Bundle\\SwaggerResolverBundle\\": ""
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}