mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 04:46:04 +03:00
31 lines
597 B
JSON
31 lines
597 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"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4.8"
|
|
},
|
|
"config": {
|
|
"bin-dir": "bin"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"GraphQL\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"GraphQL\\Tests\\": "tests/"
|
|
}
|
|
}
|
|
}
|