-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.35 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.35 KB
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 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Softonic\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\GraphQL\\": "tests/"
}
},
"bin": [
"bin/graphql-client"
],
"scripts": {
"tests": [
"@checkstyle",
"@phpunit"
],
"phpunit": "phpunit",
"checkstyle": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector process"
],
"fix-cs": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector process"
}
}