This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
{
"name": "hearst-hatchery/graphql-php-client",
"description": "PHP Client for GraphQL",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Felton Vaughn",
"email": "[email protected]"
}
],
"keywords": [
"graphql",
"client",
"php-http",
"httplug",
"psr-18",
"psr-7"
],
"require": {
"guzzlehttp/guzzle": "^6.3",
"psr/log": "^1.0",
"symfony/options-resolver": "^4.2",
"php-http/client-common": "^1.8",
"php-http/guzzle6-adapter": "^1.1",
"php-http/discovery": "^1.4",
"ext-json": "*",
"php": "^7.1"
},
"require-dev": {
"codeception/verify": "^1.0",
"friendsofphp/php-cs-fixer": "^2.16",
"php-http/mock-client": "^1.1",
"guzzlehttp/psr7": "^1.4",
"codeception/codeception": "^4.1"
},
"autoload": {
"psr-4": {
"GraphQLClient\\": "src/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --diff --dry-run",
"fix": "php-cs-fixer --config=.php_cs.dist fix",
"build": "codecept -c test/codeception.yml build",
"test": "codecept -c test/codeception.yml run",
"debug": "codecept -c test/codeception.yml run -vvv",
"coverage": [
"codecept -c test/codeception.yml run -v --coverage --coverage-html",
"open test/codeception/_output/coverage/index.html"
],
"coverage-xml": [
"codecept -c test/codeception.yml run -v --coverage --coverage-xml"
],
"post-install-cmd": [
"bash bin/setup.sh"
]
},
"suggest": {
"hearst-hatchery/graphql-php-query-builder": "Easy and convenient way to build GraphQL queries"
}
}