This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
65 lines (65 loc) · 1.89 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
{
"name": "kleijnweb/swagger-bundle",
"type": "symfony-bundle",
"authors": [
{
"name": "John Kleijn",
"email": "[email protected]",
"homepage": "http://www.kleijnweb.nl"
}
],
"license": "LGPL-3.0",
"description": "Makes your Swagger definition into a routing and validation spec",
"autoload": {
"psr-4": {
"KleijnWeb\\SwaggerBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KleijnWeb\\SwaggerBundle\\Tests\\": "tests/unit",
"KleijnWeb\\SwaggerBundle\\Tests\\Functional\\": "tests/functional",
"KleijnWeb\\SwaggerBundle\\Tests\\Functional\\PetStore\\": "tests/functional/_app/src"
},
"files": [
"tests/functional/_app/TestKernel.php"
]
},
"keywords": [
"openapi",
"swagger"
],
"require": {
"php": "^7.0.0",
"psr/log": "^1.0",
"symfony/dependency-injection": ">=2.8.18",
"symfony/config": ">=2.8.18",
"symfony/event-dispatcher": ">=2.8.18",
"symfony/http-foundation": ">=2.8.18",
"symfony/http-kernel": ">=2.8.18",
"symfony/filesystem": ">=2.8.18",
"symfony/routing": ">=2.8.18",
"symfony/yaml": ">=2.8.18",
"symfony/finder": ">=2.8.18",
"symfony/property-access": ">=2.8.18",
"symfony/cache": "^3.3.0",
"doctrine/collections": "^1.3",
"kleijnweb/php-api-descriptions": "dev-master as 1.0.0-alpha5",
"kleijnweb/php-api-routing-bundle": "dev-master as 1.0.0-alpha2",
"symfony/psr-http-message-bridge": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"symfony/framework-bundle": ">=2.8.18",
"symfony/security-bundle": ">=2.8.18",
"symfony/monolog-bridge": ">=2.8.18",
"symfony/monolog-bundle": "^2.8",
"symfony/browser-kit": ">=2.8.18",
"satooshi/php-coveralls": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"squizlabs/php_codesniffer": "^3.2"
},
"config": {
"bin-dir": "bin"
}
}