forked from spawnia/sailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "spawnia/sailor",
"type": "library",
"description": "A typesafe GraphQL client for PHP",
"homepage": "https://github.com/spawnia/sailor",
"license": "MIT",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8",
"nette/php-generator": "^3.5",
"psr/http-client": "^1",
"symfony/console": "^5",
"thecodingmachine/safe": "^1",
"webonyx/graphql-php": "^14"
},
"require-dev": {
"composer/composer": "^2",
"ergebnis/composer-normalize": "^2.13",
"guzzlehttp/guzzle": "^7",
"infection/infection": "~0.21",
"jangregor/phpstan-prophecy": "~0.8.1",
"mockery/mockery": "^1.4",
"nyholm/psr7": "^1.4",
"php-http/httplug": "^2",
"php-http/mock-client": "^1.4",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "~0.12.76",
"phpstan/phpstan-deprecation-rules": "~0.12.6",
"phpstan/phpstan-mockery": "^0.12.12",
"phpstan/phpstan-phpunit": "~0.12.17",
"phpstan/phpstan-strict-rules": "~0.12.9",
"phpunit/phpunit": "^9.5.2",
"spawnia/phpunit-assert-directory": "^2",
"symfony/var-dumper": "^5.2.3",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"suggest": {
"guzzle/guzzle": "Enables using the built-in default Client",
"mockery/mockery": "Used in Operation::mock()"
},
"config": {
"platform": {
"php": "7.4.15"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spawnia\\Sailor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\Sailor\\Tests\\": "tests/",
"Spawnia\\Sailor\\Simple\\": "examples/simple/expected/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"bin": [
"sailor"
],
"support": {
"issues": "https://github.com/spawnia/sailor/issues",
"source": "https://github.com/spawnia/sailor"
}
}