NelmioApiDocBundle/composer.json

38 lines
922 B
JSON
Raw Normal View History

2016-06-30 23:30:37 +02:00
{
"name": "exsyst/api-doc-bundle",
"type": "symfony-bundle",
"description": "[WIP] Generates Swagger docs from several sources",
"license": "MIT",
"authors": [
{
"name": "EXSyst"
}
],
"require": {
2016-07-12 00:33:55 +02:00
"php": ">=5.6",
"symfony/framework-bundle": "^3.2@dev",
2016-06-30 23:30:37 +02:00
"gossi/swagger": "^0.2"
},
"require-dev": {
2016-07-12 00:33:55 +02:00
"symfony/browser-kit": "~2.8|~3.0",
"symfony/phpunit-bridge": "^3.2@dev",
"sensio/framework-extra-bundle": "~3.0",
"nelmio/api-doc-bundle": "^2.0"
2016-06-30 23:30:37 +02:00
},
"suggest": {
"nelmio/api-doc-bundle": "For using the ApiDoc annotation."
},
"autoload": {
"psr-4": {
"EXSyst\\Bundle\\ApiDocBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
2016-07-12 00:33:55 +02:00
},
"prefer-stable": true,
"minimum-stability": "dev"
2016-06-30 23:30:37 +02:00
}