forked from nelmio/NelmioApiDocBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 2.01 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
{
"name": "nelmio/api-doc-bundle",
"description": "Generates documentation for your REST API from annotations",
"keywords": ["api", "documentation", "doc", "rest"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nelmio",
"homepage": "http://nelm.io"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
}
],
"require": {
"php": ">=5.3",
"symfony/twig-bundle": "~2.3",
"symfony/framework-bundle": "~2.3",
"symfony/console": "~2.3",
"michelf/php-markdown": "~1.4"
},
"conflict": {
"jms/serializer": "<0.12",
"jms/serializer-bundle": "<0.11",
"twig/twig": "<1.12"
},
"require-dev": {
"symfony/css-selector": "~2.3",
"symfony/browser-kit": "~2.3",
"symfony/validator": "~2.3",
"symfony/yaml": "~2.3",
"symfony/form": "~2.3",
"symfony/finder": "~2.3",
"symfony/serializer": "~2.7",
"doctrine/orm": "~2.3",
"doctrine/doctrine-bundle": "~1.5",
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": ">=0.11",
"dunglas/api-bundle": "~1.0@dev",
"sensio/framework-extra-bundle": "~3.0",
"symfony/phpunit-bridge": "~2.7"
},
"suggest": {
"symfony/form": "For using form definitions as input.",
"symfony/validator": "For making use of validator information in the doc.",
"friendsofsymfony/rest-bundle": "For making use of REST information in the doc.",
"dunglas/api-bundle": "For making use of resources definitions of DunglasApiBundle.",
"jms/serializer": "For making use of serializer information in the doc."
},
"autoload": {
"psr-0": { "Nelmio\\ApiDocBundle": "" }
},
"target-dir": "Nelmio/ApiDocBundle",
"extra": {
"branch-alias": {
"dev-master": "2.10.x-dev"
}
}
}