test_route_1: path: /tests.{_format} methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::indexAction, _format: json } test_route_2: path: /tests.{_format} host: api.test.dev methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::postTestAction, _format: json } test_route_3: path: /another defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::anotherAction } test_route_4: path: /any/{foo} defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::anyAction, _format: json } test_route_5: path: /my-commented/{id}/{page}/{paramType}/{param} defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::myCommentedAction } test_route_6: path: /yet-another/{id} defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::yetAnotherAction } requirements: id: \d+ test_route_7: path: /another-post methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::anotherPostAction, _format: json } test_route_9: path: /jms-input-test methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::jmsInputTestAction } test_route_10: path: /jms-return-test methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::jmsReturnTestAction } test_route_12: path: /secure-route schemes: [https] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::secureRouteAction } test_service_route_1: path: /tests.{_format} methods: [GET] defaults: { _controller: nelmio.test.controller:indexAction, _format: json } test_service_route_2: path: /tests.{_format} host: api.test.dev methods: [POST] defaults: { _controller: nelmio.test.controller:postTestAction, _format: json } test_service_route_3: path: /another defaults: { _controller: nelmio.test.controller:anotherAction } test_service_route_4: path: /any defaults: { _controller: nelmio.test.controller:anyAction, _format: json } NelmioApiDocBundle: resource: "@NelmioApiDocBundle/Resources/config/routing.yml" prefix: / test_route_14: path: /tests2.{_format} methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::postTest2Action, _format: json } test_route_17: path: /z-action-with-deprecated-indicator methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::deprecatedAction } test_return_nested_output: path: /return-nested-output defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::jmsReturnNestedOutputAction, _format: json } test_return_nested_extend_output: path: /return-nested-extend-output defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::jmsReturnNestedExtendOutputAction, _format: json } test_route_18: path: /z-return-jms-and-validator-output defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zReturnJmsAndValidationOutputAction } test_route_named_resource: path: /named-resource defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::namedResourceAction } test_route_19: path: /z-return-selected-parsers-output defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zReturnSelectedParsersOutputAction } test_route_20: path: /z-return-selected-parsers-input defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zReturnSelectedParsersInputAction } test_route_private: path: /private defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::privateAction } test_route_exclusive: path: /exclusive defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::exclusiveAction } test_route_list_resource: path: /api/resources.{_format} methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::listResourcesAction, _format: json } requirements: _format: json|xml|html test_route_get_resource: path: /api/resources/{id}.{_format} methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::getResourceAction, _format: json } requirements: _format: json|xml|html test_route_delete_resource: path: /api/resources/{id}.{_format} methods: [DELETE] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::deleteResourceAction, _format: json } requirements: _format: json|xml|html test_route_create_resource: path: /api/resources.{_format} methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::createResourceAction, _format: json } requirements: _format: json|xml|html test_route_list_another_resource: path: /api/other-resources.{_format} methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::listAnotherResourcesAction, _format: json } requirements: _format: json|xml|html test_route_update_another_resource: path: /api/other-resources/{id}.{_format} methods: [PUT, PATCH] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::updateAnotherResourceAction, _format: json } requirements: _format: json|xml|html swagger_doc: resource: "@NelmioApiDocBundle/Resources/config/swagger_routing.yml" prefix: /api-docs test_route_23: path: /zcached methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zCachedAction } test_route_24: path: /zsecured methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zSecuredAction } test_required_parameters: path: /api/other-resources/{id}.{_format} methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::requiredParametersAction, _format: json } requirements: _format: json|xml|html test_patch_disables_required_parameters: path: /api/other-resources/{id}.{_format} methods: [PATCH] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\ResourceController::requiredParametersAction, _format: json } requirements: _format: json|xml|html test_route_25: path: /with-link methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::withLinkAction } test_route_26: path: /z-action-with-array-request-param methods: [POST] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::zActionWithArrayRequestParamAction } test_route_27: path: /api/overrride/properties methods: [POST, PUT] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::overrideJmsAnnotationWithApiDocPropertiesAction, _format: json } test_route_28: path: /route_with_host.{_format} host: api.{domain} methods: [GET] requirements: domain: "%domain_dev%|%domain_prod%" defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::routeWithHostAction, domain: "%domain_dev%", _format: json } test_route_version_checking: path: /zz-tests-route-version.{_format} methods: [GET] defaults: { _controller: Nelmio\ApiDocBundle\Tests\Fixtures\Controller\TestController::routeVersionAction, _format: json, _version: "1.5" }