NelmioApiDocBundle/composer.json

48 lines
1.4 KiB
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-28 10:20:59 +02:00
"php": "^7.0",
2016-07-29 10:22:40 +02:00
"symfony/framework-bundle": "^3.2",
2016-08-01 19:58:57 +02:00
"exsyst/swagger": "dev-master"
2016-06-30 23:30:37 +02:00
},
"require-dev": {
2016-07-29 10:22:40 +02:00
"symfony/validator": "^3.2",
"symfony/property-access": "^3.2",
"symfony/browser-kit": "^3.2",
"symfony/cache": "^3.2",
"symfony/phpunit-bridge": "^3.2",
2016-07-28 10:20:59 +02:00
"sensio/framework-extra-bundle": "^3.0",
2016-07-13 23:05:14 +02:00
"nelmio/api-doc-bundle": "^2.0",
"phpdocumentor/reflection-docblock": "^3.1",
2016-07-28 10:20:59 +02:00
"phpunit/phpunit": "^5.4",
2016-07-29 10:22:40 +02:00
"zircote/swagger-php": "^2.0",
2016-08-01 19:58:57 +02:00
"api-platform/core": "dev-master"
2016-06-30 23:30:37 +02:00
},
"suggest": {
2016-07-13 23:05:14 +02:00
"nelmio/api-doc-bundle": "For using the ApiDoc annotation.",
2016-07-29 10:22:40 +02:00
"phpdocumentor/reflection-docblock": "For parsing php docs.",
"zircote/swagger-php": "For using swagger annotations.",
"api-platform/core": "For using an API oriented framework."
2016-06-30 23:30:37 +02:00
},
"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
}