rromanovsky / graphiql-middleware
GraphiQL PSR-7 Middleware based on https://github.com/graphql/graphiql
Package info
github.com/rromanovsky/graphiql-middleware
Language:HTML
pkg:composer/rromanovsky/graphiql-middleware
0.2.0
2017-11-08 20:37 UTC
Requires
- php: >=5.4
- phpunit/php-text-template: ^1.2
- psr/http-message: ^1.0
This package is not auto-updated.
Last update: 2026-03-29 12:21:14 UTC
README
You can add a GraphiQL interface to your project with this PSR-7 Middleware
Install
composer require rromanovsky/graphiql-middleware
Usage
- Slim
use GraphiQLMiddleware\GraphiQLMiddleware; // By default the middleware will be executed on '/graphiql' route $app->add(new GraphiQLMiddleware());
