mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
dd9062d77e
Make lib supports promises, using a promise adapter interface.
39 lines
870 B
JSON
39 lines
870 B
JSON
{
|
|
"name": "webonyx/graphql-php",
|
|
"description": "A PHP port of GraphQL reference implementation",
|
|
"type": "library",
|
|
"license": "BSD",
|
|
"homepage": "https://github.com/webonyx/graphql-php",
|
|
"keywords": [
|
|
"graphql",
|
|
"API"
|
|
],
|
|
"require": {
|
|
"php": ">=5.4,<8.0-DEV",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4.8",
|
|
"react/promise": "^2.4"
|
|
},
|
|
"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 use ReactPhp promise adapter"
|
|
}
|
|
}
|