-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 1.08 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
{
"name": "tobion/openapi-symfony-routing",
"type": "library",
"description": "Loads routes in Symfony based on OpenAPI/Swagger annotations",
"keywords": ["OpenAPI", "swagger", "routing", "router", "routes", "annotations", "OAI"],
"homepage": "https://github.com/Tobion/OpenAPI-Symfony-Routing",
"license": "MIT",
"authors": [
{
"name": "Tobias Schultze",
"homepage": "https://github.com/Tobion"
}
],
"require": {
"php": ">=7.2",
"symfony/finder": "^4.4|^5.0|^6.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"zircote/swagger-php": "^3.0.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2|^6.0"
},
"autoload": {
"psr-4": {
"Tobion\\OpenApiSymfonyRouting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tobion\\OpenApiSymfonyRouting\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}