graphql-php/composer.json

32 lines
643 B
JSON
Raw Permalink Normal View History

2015-07-15 20:05:46 +03:00
{
"name": "webonyx/graphql-php",
"description": "A PHP port of GraphQL reference implementation",
2015-07-15 20:05:46 +03:00
"type": "library",
"license": "BSD",
"homepage": "https://github.com/webonyx/graphql-php",
"keywords": [
"graphql",
"API"
],
"require": {
2015-10-17 18:30:09 +03:00
"php": ">=5.4,<8.0-DEV"
2015-07-15 20:05:46 +03:00
},
"require-dev": {
"phpunit/phpunit": "^4.8"
2015-07-15 20:05:46 +03:00
},
"config": {
"bin-dir": "bin"
},
"autoload": {
2016-04-09 10:15:45 +03:00
"psr-4": {
"GraphQL\\": "src/"
}
2015-07-15 20:05:46 +03:00
},
"autoload-dev": {
2016-04-09 10:36:53 +03:00
"psr-4": {
2016-04-28 16:21:24 +03:00
"GraphQL\\Tests\\": "tests/",
"GraphQL\\Benchmarks\\": "benchmarks/"
2016-04-09 10:36:53 +03:00
}
2015-07-15 20:05:46 +03:00
}
}