graphql-php/composer.json
2015-10-17 08:24:19 -07:00

33 lines
592 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.3,<8.0-DEV"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
],
"files": [
]
}
}