2017 © Pedro Peláez
 

library swaggeruibundle

Creates a Swagger UI page in your Symfony3 application

image

cvilleger/swaggeruibundle

Creates a Swagger UI page in your Symfony3 application

  • Monday, July 17, 2017
  • by cvilleger
  • Repository
  • 1 Watchers
  • 0 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

License Latest Unstable Version, (*1)

SwaggeruiBundle

Creates a SwaggerUI page in your Symfony application., (*2)

  • Basic functionalities
  • Customization

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:, (*3)

$ 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., (*4)

Step 2: Enable the Bundle

Enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:, (*5)

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Cvilleger\SwaggeruiBundle\CvillegerSwaggeruiBundle(),
        );

        // ...
    }

    // ...
}

Step 3: Routing

Add routing in the app\config\routing.yml file of your project:, (*6)

cvilleger_swaggerui:
    resource: "@CvillegerSwaggeruiBundle/Resources/config/routing.yml"
    prefix:   /doc

Step 4: Parameters (optional)

Add parameters in the app\config\parameters.yml file of your project:, (*7)

swaggerui:
    - title: 'SwaggeruiBundleProject'
    - url: 'http://petstore.swagger.io/v2/swagger.json' || 'swaggerJsonRouteName'

The Versions