-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
40 lines (40 loc) · 1.11 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
{
"name": "harmbandstra/swagger-ui-bundle",
"type": "symfony-bundle",
"description": "Exposes swagger UI inside your Symfony project through a route (eg. /docs)",
"keywords": [
"php", "symfony", "swagger-ui", "openapi" ,"api", "doc", "bundle", "swagger"
],
"homepage": "https://github.com/harmbandstra/swagger-ui-bundle",
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"swagger-api/swagger-ui": "^4.0"
},
"require-dev": {
"symfony/browser-kit": "^4.0|^5.0|^6.0",
"composer/composer": "^2.0.13",
"phpspec/prophecy": "^1.15",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"HarmBandstra\\SwaggerUiBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HarmBandstra\\SwaggerUiBundle\\Tests\\": "tests/"
}
},
"include-path": [
"src"
]
}