rromanovsky/graphiql-middleware

GraphiQL PSR-7 Middleware based on https://github.com/graphql/graphiql

Maintainers

Package info

github.com/rromanovsky/graphiql-middleware

Language:HTML

pkg:composer/rromanovsky/graphiql-middleware

Statistics

Installs: 41

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.2.0 2017-11-08 20:37 UTC

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