mijohansen/slim-swagger

Simpler way to hook a swagger api into slim-framework.

0.0.5 2018-11-24 17:35 UTC

This package is auto-updated.

Last update: 2024-04-29 04:12:07 UTC


README

Slim needs a simpler way to define an Swagger API. No docblock magic, just code.

This project is at an early stage. Functionality will break.

Usage

Adding the dependencies to the container

You need to override the router and add the swagger liberary to Slim. A clean way of doing this is BEFORE the $app object is initiated.

Minimal example:

use Slim\App;
use SlimSwagger\SlimSwagger;

$container = SlimSwagger::init();
$app = new App($container);

Installing the swagger route:

use SlimSwagger\SwaggerAction;

$app->get('/swagger.json', SwaggerAction::class);