jonhermansen / php-slim-swagger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-slim-swagger

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);

About

License:MIT License


Languages

Language:PHP 93.5%Language:Shell 6.5%