forked from johnknl/swagger-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.98 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.98 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
{
"name": "kleijnweb/swagger-bundle",
"type": "symfony-bundle",
"authors": [
{
"name": "John Kleijn",
"email": "john@kleijnweb.nl",
"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"
}
},
"require": {
"php": ">=5.4.0",
"psr/log": "1.0",
"symfony/dependency-injection": ">=2.6.0",
"symfony/config": ">=2.6.0",
"symfony/event-dispatcher": ">=2.6.0",
"symfony/http-foundation": ">=2.6.0",
"symfony/http-kernel": ">=2.6.0",
"symfony/filesystem": ">=2.6.0",
"symfony/routing": ">=2.6.0",
"symfony/yaml": ">=2.6.0",
"symfony/finder": ">=2.6.0",
"symfony/property-access": ">=2.6.0",
"doctrine/collections": "^1.3",
"justinrainbow/json-schema": ">=1.4.2 <1.5",
"ramsey/vnderror": "^3.0.0",
"nocarrier/hal": "^0.9.12"
},
"suggest": {
"symfony/serializer": "Object de- serialization using Symfony Serializer Component",
"jms/serializer": "Object de- serialization using JMS\\Serializer",
"doctrine/annotations": "Object de- serialization annotation support",
"kleijnweb/jwt-bundle": "JWT authentication support",
"doctrine/cache": "Caching parsed and resolved Swagger documents"
},
"require-dev": {
"phpunit/phpunit": ">=4.1.0",
"symfony/framework-bundle": ">=2.6.0",
"symfony/console": ">=2.6.0",
"symfony/form": ">=2.6.0",
"symfony/serializer": ">=2.6.0",
"symfony/monolog-bundle": ">=2.6.0",
"sensio/generator-bundle": "~2.3",
"mikey179/vfsStream": "^1.5",
"zendframework/zend-stdlib": ">=2.4.0",
"symfony/browser-kit": ">=2.6.0",
"twig/twig": "^1.21",
"jms/serializer": "1.0",
"phpoption/phpoption": ">=1.1.0",
"fr3d/swagger-assertions": "^0.2.0",
"satooshi/php-coveralls": "<1.0",
"doctrine/cache": "^1.5.0"
},
"config": {
"bin-dir": "bin"
}
}