-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
60 lines (60 loc) · 1.32 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
{
"name": "softonic/graphql-client",
"type": "library",
"description": "Softonic GraphQL client",
"keywords": [
"softonic",
"oauth2",
"graphql",
"client"
],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/graphql-client",
"support": {
"issues": "https://github.com/softonic/graphql-client/issues"
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"softonic/guzzle-oauth2-middleware": "^2.1",
"ext-json": "*",
"symfony/console": "^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13.8",
"squizlabs/php_codesniffer": "^3.7",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Softonic\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\GraphQL\\Test\\": "tests/"
}
},
"bin": [
"bin/graphql-client"
],
"scripts": {
"test": [
"@checkstyle",
"@phpunit"
],
"phpunit": "phpunit --coverage-text",
"checkstyle": [
"php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector --dry-run"
],
"fix-checkstyle": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector"
}
}