2015-07-15 23:05:46 +06:00
|
|
|
{
|
|
|
|
"name": "webonyx/graphql-php",
|
2015-09-01 02:02:54 +06:00
|
|
|
"description": "A PHP port of GraphQL reference implementation",
|
2015-07-15 23:05:46 +06:00
|
|
|
"type": "library",
|
|
|
|
"license": "BSD",
|
|
|
|
"homepage": "https://github.com/webonyx/graphql-php",
|
|
|
|
"keywords": [
|
|
|
|
"graphql",
|
|
|
|
"API"
|
|
|
|
],
|
|
|
|
"require": {
|
2017-07-12 17:46:43 +07:00
|
|
|
"php": ">=5.5,<8.0-DEV",
|
2016-11-12 09:59:05 +01:00
|
|
|
"ext-mbstring": "*"
|
2015-07-15 23:05:46 +06:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-02-25 02:55:52 +07:00
|
|
|
"phpunit/phpunit": "^4.8"
|
2015-07-15 23:05:46 +06:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"bin-dir": "bin"
|
|
|
|
},
|
|
|
|
"autoload": {
|
2016-11-25 16:02:19 +07:00
|
|
|
"files": ["src/deprecated.php"],
|
2016-04-09 09:15:45 +02:00
|
|
|
"psr-4": {
|
|
|
|
"GraphQL\\": "src/"
|
|
|
|
}
|
2015-07-15 23:05:46 +06:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2016-04-09 09:36:53 +02:00
|
|
|
"psr-4": {
|
2016-04-28 19:21:24 +06:00
|
|
|
"GraphQL\\Tests\\": "tests/",
|
2016-10-21 18:43:11 +07:00
|
|
|
"GraphQL\\Benchmarks\\": "benchmarks/",
|
|
|
|
"GraphQL\\Examples\\Blog\\": "examples/01-blog/Blog/"
|
2016-04-09 09:36:53 +02:00
|
|
|
}
|
2016-11-26 20:45:49 +01:00
|
|
|
},
|
|
|
|
"suggest": {
|
2016-12-03 04:13:23 +07:00
|
|
|
"react/promise": "To use ReactPHP promise adapter"
|
2015-07-15 23:05:46 +06:00
|
|
|
}
|
|
|
|
}
|