mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "webonyx/graphql-php",
|
|
"description": "A PHP port of GraphQL reference implementation",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/webonyx/graphql-php",
|
|
"keywords": [
|
|
"graphql",
|
|
"API"
|
|
],
|
|
"require": {
|
|
"php": "^7.1",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"require-dev": {
|
|
"doctrine/coding-standard": "^4.0",
|
|
"phpunit/phpunit": "^7.2",
|
|
"psr/http-message": "^1.0"
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"autoload": {
|
|
"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 leverage async resolving on React PHP platform",
|
|
"psr/http-message": "To use standard GraphQL server"
|
|
},
|
|
"scripts": {
|
|
"lint" : "phpcs"
|
|
}
|
|
}
|