{ "name": "webonyx/graphql-php", "description": "A PHP port of GraphQL reference implementation", "type": "library", "license": "MIT", "homepage": "https://github.com/webonyx/graphql-php", "keywords": [ "graphql", "API" ], "require": { "php": ">=5.5,<8.0-DEV", "ext-mbstring": "*" }, "require-dev": { "phpunit/phpunit": "^4.8", "psr/http-message": "^1.0" }, "config": { "bin-dir": "bin" }, "autoload": { "files": ["src/deprecated.php"], "psr-4": { "GraphQL\\": "src/" } }, "autoload-dev": { "psr-4": { "GraphQL\\Tests\\": "tests/", "GraphQL\\Benchmarks\\": "benchmarks/", "GraphQL\\Examples\\Blog\\": "examples/01-blog/Blog/" } }, "suggest": { "react/promise": "To leverage async resolving on React PHP platform", "psr/http-message": "To use standard GraphQL server" } }