NelmioApiDocBundle/composer.json

53 lines
1.6 KiB
JSON
Raw Normal View History

2012-05-23 00:33:01 +02:00
{
"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": {
2013-11-14 16:25:39 +01:00
"symfony/twig-bundle": "~2.1",
2013-12-05 18:37:33 +01:00
"symfony/framework-bundle": "~2.1",
2013-10-29 09:54:57 +01:00
"symfony/console": "~2.1",
"michelf/php-markdown": "~1.4"
2012-05-23 00:33:01 +02:00
},
"conflict": {
"jms/serializer": "<0.12",
"jms/serializer-bundle": "<0.11"
},
2012-05-23 00:33:01 +02:00
"require-dev": {
2013-02-15 13:41:09 +01:00
"symfony/css-selector": "~2.1",
"symfony/browser-kit": "~2.1",
"symfony/validator": "~2.1",
"symfony/yaml": "~2.1",
2013-10-29 09:54:57 +01:00
"symfony/form": "~2.1",
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": ">=0.11",
2013-05-03 16:26:16 +02:00
"sensio/framework-extra-bundle": "~2.1"
2012-05-23 00:33:01 +02:00
},
"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.",
2013-10-29 09:54:57 +01:00
"jms/serializer": "For making use of serializer information in the doc."
},
2012-05-23 00:33:01 +02:00
"autoload": {
"psr-0": { "Nelmio\\ApiDocBundle": "" }
},
2012-05-23 09:44:19 +02:00
"target-dir": "Nelmio/ApiDocBundle",
"extra": {
"branch-alias": {
2014-07-30 11:11:08 +02:00
"dev-master": "2.7.x-dev"
2012-05-23 09:44:19 +02:00
}
}
2012-05-23 00:33:01 +02:00
}