Creates a SwaggerUI page in your Symfony application.
- Basic functionalities
- Customization
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require cvilleger/SwaggeruiBundle "dev-master"This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php file of your project:
<?php
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Cvilleger\SwaggeruiBundle\CvillegerSwaggeruiBundle(),
);
// ...
}
// ...
}Add routing in the app\config\routing.yml file of your project:
cvilleger_swaggerui:
resource: "@CvillegerSwaggeruiBundle/Resources/config/routing.yml"
prefix: /docAdd parameters in the app\config\parameters.yml file of your project:
swaggerui:
- title: 'SwaggeruiBundleProject'
- url: 'http://petstore.swagger.io/v2/swagger.json' || 'swaggerJsonRouteName'