-
Notifications
You must be signed in to change notification settings - Fork 87
/
composer.json
53 lines (53 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "gmostafa/php-graphql-client",
"description": "GraphQL client and query builder.",
"type": "library",
"license": "MIT",
"keywords": [
"graphql",
"graph-ql",
"client",
"php",
"query-builder",
"query",
"builder"
],
"authors": [
{
"name": "Mostafa Ghoneimy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphQL\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"guzzlehttp/guzzle": "^6.3|^7.0.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"codacy/coverage": "^1.4",
"aws/aws-sdk-php": "^3.186"
},
"conflict": {
"guzzlehttp/psr7": "< 1.7.0"
},
"scripts": {
"test": "phpunit tests/ --whitelist src/ --coverage-clover build/coverage/xml"
},
"suggest": {
"aws/aws-sdk-php": "Move this package to require section to use AWS IAM authorization",
"gmostafa/php-graphql-oqm": "To have object-to-query mapping support"
}
}