NelmioApiDocBundle/composer.json
Filip Benčo 78664ef9ec
OpenApi 3 Support (#1623)
* Initial pass for OA3 upgrade

* Fix Util Tests

* Fix first batch of Unit Tests. Up to Model

* Another batch of fixed tests

* Update annotations

* Convert Model & Property Describers

* Update tests, Fix RouteDescribers, FIx additional bugs

* Another batch of updates

* Another batch of fixed Functional Tests

* Fix FunctionalTest tests

* Fix Bazinga Tests

* FIx FOS Rest

* Fix JMS TEsts & describers

* Fix all Tests

* Fix few stuff from own CR

* CS Fixes

* CS Fixes 2

* CS Fixes 3

* CS Fixes 4

* Remove collection bug

* Updates after first CRs

* CS

* Drop support for SF3

* Update the docs

* Add an upgrade guide

* misc doc fixes

* Configurable media types

* Code Style Fixes

* Don't use ::$ref for @Response and @RequestBody

* Fix upgrading guide

* Fix OA case

Co-authored-by: Filip Benčo <filip.benco@websupport.sk>
Co-authored-by: Guilhem Niot <guilhem.niot@gmail.com>
Co-authored-by: Mantis Development <mantis@users.noreply.github.com>
2020-05-28 13:19:11 +02:00

69 lines
2.2 KiB
JSON

{
"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": {
"php": "^7.1",
"ext-json": "*",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/options-resolver": "^4.0|^5.0",
"symfony/property-info": "^4.0|^5.0",
"zircote/swagger-php": "^3.0",
"phpdocumentor/reflection-docblock": "^3.1|^4.0|^5.0"
},
"require-dev": {
"symfony/templating": "^4.0|^5.0",
"symfony/twig-bundle": "^4.0|^5.0",
"symfony/asset": "^4.0|^5.0",
"symfony/console": "^4.0|^5.0",
"symfony/config": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.0",
"symfony/property-access": "^4.0|^5.0",
"symfony/form": "^4.0|^5.0",
"symfony/dom-crawler": "^4.0|^5.0",
"symfony/browser-kit": "^4.0|^5.0",
"symfony/cache": "^4.0|^5.0",
"symfony/phpunit-bridge": "^4.0|^5.0",
"symfony/stopwatch": "^4.0|^5.0",
"symfony/routing": "^4.0|^5.0",
"sensio/framework-extra-bundle": "^4.0|^5.0",
"doctrine/annotations": "^1.2",
"doctrine/common": "^2.4",
"api-platform/core": "^2.4",
"friendsofsymfony/rest-bundle": "^2.0",
"willdurand/hateoas-bundle": "^1.0|^2.0",
"jms/serializer-bundle": "^2.3|^3.0",
"jms/serializer": "^1.14|^3.0"
},
"suggest": {
"api-platform/core": "For using an API oriented framework.",
"friendsofsymfony/rest-bundle": "For using the parameters annotations."
},
"conflict": {
"symfony/framework-bundle": "4.2.7"
},
"autoload": {
"psr-4": {
"Nelmio\\ApiDocBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.6.x-dev"
}
}
}