NelmioApiDocBundle/composer.json

59 lines
1.9 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": {
2015-06-10 12:19:47 +02:00
"symfony/twig-bundle": "~2.3",
"symfony/framework-bundle": "~2.3",
"symfony/console": "~2.3",
"michelf/php-markdown": "~1.4"
2012-05-23 00:33:01 +02:00
},
"conflict": {
"jms/serializer": "<0.12",
2015-08-28 10:50:28 +02:00
"jms/serializer-bundle": "<0.11",
"twig/twig": "<1.12"
},
2012-05-23 00:33:01 +02:00
"require-dev": {
2015-06-10 12:19:47 +02:00
"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",
2015-07-29 00:56:26 +02:00
"symfony/serializer": "~2.7",
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": ">=0.11",
"dunglas/api-bundle": "~1.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/phpunit-bridge": "~2.7"
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.",
2015-04-28 23:29:18 +02:00
"dunglas/api-bundle": "For making use of resources definitions of DunglasApiBundle.",
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": {
2015-05-16 19:16:14 +02:00
"dev-master": "2.9.x-dev"
2012-05-23 09:44:19 +02:00
}
}
2012-05-23 00:33:01 +02:00
}