forked from webonyx/graphql-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.12 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "marrikulus/graphql-hacklang",
"description": "A PHP port of GraphQL reference implementation",
"type": "library",
"license": "BSD",
"homepage": "https://github.com/marrikulus/graphql-hacklang",
"keywords": [
"graphql",
"API"
],
"require": {
"hhvm": "^3.30.0",
"php": ">=5.5,<8.0-DEV",
"ext-mbstring": "*",
"hhvm/hhvm-autoload": "^v1.8",
"hhvm/hsl": "v3.30.0"
},
"require-dev": {
"hhvm/hacktest": "v1.3",
"psr/http-message": "^1.0",
"hack-psr/psr7-http-message-hhi": "^1.0"
},
"autoload": {
"files": [
"src/deprecated.php"
],
"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"
}
}