forked from softonic/graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "jasonrgd/graphql-client",
"type": "library",
"description" : "Softonic GraphQL client",
"keywords": ["softonic", "oauth2", "graphql", "client"],
"license": "Apache-2.0",
"homepage": "https://github.com/jasonrgd/graphql-client",
"support": {
"issues": "https://github.com/jasonrgd/graphql-client/issues"
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.4"
},
"autoload": {
"psr-4": {
"Jasonrgd\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasonrgd\\GraphQL\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"fix-cs": "php-cs-fixer fix -v --diff --allow-risky=yes;"
}
}