NelmioApiDocBundle/composer.json

63 lines
2.0 KiB
JSON
Raw Normal View History

2016-06-30 23:30:37 +02:00
{
2016-12-29 12:09:26 +01:00
"name": "nelmio/api-doc-bundle",
"description": "Generates documentation for your REST API from annotations",
"keywords": ["api", "documentation", "doc", "rest"],
2016-06-30 23:30:37 +02:00
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
2016-12-29 12:09:26 +01:00
"name": "Nelmio",
"homepage": "http://nelm.io"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
2016-06-30 23:30:37 +02:00
}
],
"require": {
"php": "^7.0",
2018-01-04 11:34:23 +01:00
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/property-info": "^3.4|^4.0",
2017-07-25 10:45:34 +02:00
"exsyst/swagger": "~0.3",
2017-03-15 13:31:40 +01:00
"zircote/swagger-php": "^2.0.9"
2016-06-30 23:30:37 +02:00
},
"require-dev": {
2018-01-04 11:34:23 +01:00
"symfony/templating": "^3.4|^4.0",
"symfony/twig-bundle": "^3.4|^4.0",
"symfony/asset": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/config": "^3.4|^4.0",
"symfony/validator": "^3.4|^4.0",
"symfony/property-access": "^3.4|^4.0",
"symfony/form": "^3.4|^4.0",
"symfony/dom-crawler": "^3.4|^4.0",
"symfony/browser-kit": "^3.4|^4.0",
"symfony/cache": "^3.4|^4.0",
"symfony/phpunit-bridge": "^3.4",
"symfony/stopwatch": "^3.4|^4.0",
2016-07-28 10:20:59 +02:00
"sensio/framework-extra-bundle": "^3.0",
2016-12-17 12:19:05 +01:00
"doctrine/annotations": "^1.2",
2018-01-04 16:56:56 +01:00
"doctrine/common": "^2.4",
2016-08-04 22:27:10 +02:00
2016-07-13 23:05:14 +02:00
"phpdocumentor/reflection-docblock": "^3.1",
2018-01-04 16:56:56 +01:00
"api-platform/core": "^2.1.0",
2017-06-25 15:40:07 +02:00
"friendsofsymfony/rest-bundle": "^2.0",
2017-12-07 14:00:40 +08:00
"jms/serializer-bundle": "^2.0"
2016-06-30 23:30:37 +02:00
},
"suggest": {
2016-07-29 10:22:40 +02:00
"phpdocumentor/reflection-docblock": "For parsing php docs.",
2016-08-04 22:27:10 +02:00
"api-platform/core": "For using an API oriented framework.",
"friendsofsymfony/rest-bundle": "For using the parameters annotations."
2016-06-30 23:30:37 +02:00
},
"autoload": {
"psr-4": {
2016-12-29 12:09:26 +01:00
"Nelmio\\ApiDocBundle\\": ""
2016-06-30 23:30:37 +02:00
}
},
"extra": {
"branch-alias": {
2018-01-04 11:34:23 +01:00
"dev-master": "3.1.x-dev"
2016-06-30 23:30:37 +02:00
}
2016-12-29 12:09:26 +01:00
}
2016-06-30 23:30:37 +02:00
}