youshido / silex-graphql
Silex graphql controller provider
Installs: 1 236
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 4
Forks: 0
pkg:composer/youshido/silex-graphql
Requires
- php: >=5.5
- silex/silex: ~2.0
- youshido/graphql: ~1.1
This package is not auto-updated.
Last update: 2025-09-28 00:40:06 UTC
README
This is a Silex controller provider to PHP GraphQL Library
To add GraphQL server to your project, just add these lines to your php file:
$schema = new YourProjectSchema(); $app->mount('/graphql', new GraphQLControllerProvider($schema));
GraphQL schema definition documentation with examples you can find here.