graphql-php/composer.json

50 lines
1.2 KiB
JSON
Raw 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": "MIT",
2015-07-15 20:05:46 +03:00
"homepage": "https://github.com/webonyx/graphql-php",
"keywords": [
"graphql",
"API"
],
"require": {
2018-06-16 00:49:40 +03:00
"php": "^7.1",
2018-08-13 11:36:03 +03:00
"ext-json": "*",
"ext-mbstring": "*"
2015-07-15 20:05:46 +03:00
},
"require-dev": {
2018-06-16 00:49:40 +03:00
"doctrine/coding-standard": "^4.0",
2018-09-26 12:18:02 +03:00
"phpbench/phpbench": "^0.14.0",
2018-08-31 11:55:59 +03:00
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-phpunit": "^0.10.0",
2018-08-07 20:13:21 +03:00
"phpunit/phpunit": "^7.2",
2018-08-28 12:28:57 +03:00
"psr/http-message": "^1.0",
"react/promise": "2.*"
2015-07-15 20:05:46 +03:00
},
"config": {
2018-03-09 17:03:52 +03:00
"preferred-install": "dist",
"sort-packages": true
},
2015-07-15 20:05:46 +03:00
"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/",
"GraphQL\\Examples\\Blog\\": "examples/01-blog/Blog/"
2016-04-09 10:36:53 +03:00
}
},
"suggest": {
2017-08-15 17:56:21 +03:00
"react/promise": "To leverage async resolving on React PHP platform",
"psr/http-message": "To use standard GraphQL server"
2018-06-21 11:18:34 +03:00
},
"scripts": {
2018-08-28 12:28:57 +03:00
"lint" : "phpcs",
2018-09-02 22:07:31 +03:00
"static-analysis": "phpstan analyse --ansi"
2015-07-15 20:05:46 +03:00
}
}