kbrabrand / silex-swagger-ui
A silex service provider that integrates the Swagger UI documentation browser into silex
Package info
github.com/kbrabrand/silex-swagger-ui
Language:JavaScript
pkg:composer/kbrabrand/silex-swagger-ui
Requires
- php: >=5.4.0
- silex/silex: ~1.0
This package is auto-updated.
Last update: 2026-03-15 06:32:18 UTC
README
A silex service provider that integrates the Swagger UI documentation browser into silex. Does not depend on anything besides Silex.
Installation
Add "kbrabrand/silex-swagger-ui": "dev-master" to you composer.json file and run composer install inside the root of your project.
In addition to this you will need to register the service in your Silex app like this;
// Set up swagger ui service for viewing the swagger docs $app->register(new SwaggerUI\Silex\Provider\SwaggerUIServiceProvider(), array( 'swaggerui.path' => '/v1/swagger', 'swaggerui.apiDocPath' => '/v1/docs' ));
This will result in the SwaggerUI interface being available at /v1/swagger under you Silex application root. The swaggerui.apiDovPath config option specifies the URL/path to the swagger doc files.
Known issues
The Swagger UI is pretty slow right now due to the fact that static resources are served through a Silex controller and no cache is in place (yet). I'll try to fix this soon.
License
Copyright (c) 2014, Kristoffer Brabrand kristoffer@brabrand.no
Licensed under the MIT License