forked from spawnia/sailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.77 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
{
"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.2",
"guzzlehttp/guzzle": "^6.3",
"nette/php-generator": "^3.3.1",
"psr/http-client": "^1.0",
"symfony/console": "^4.3",
"thecodingmachine/safe": "^0.1.16",
"webonyx/graphql-php": "dev-BuildClientSchema"
},
"require-dev": {
"composer/composer": "^1.9",
"infection/infection": "~0.13.6",
"jangregor/phpstan-prophecy": "~0.4.2",
"localheinz/composer-normalize": "^1.3.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "~0.11.15",
"phpstan/phpstan-deprecation-rules": "~0.11.2",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpstan/phpstan-strict-rules": "~0.11.1",
"phpunit/phpunit": "^8.3.4",
"spawnia/phpunit-assert-directory": "^1.0.0",
"symfony/var-dumper": "^4.3",
"thecodingmachine/phpstan-safe-rule": "^0.1.4"
},
"config": {
"platform": {
"php": "7.3.9"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spawnia\\Sailor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\Sailor\\Tests\\": "tests/",
"Spawnia\\Sailor\\Foo\\": "examples/foo/expected/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/spawnia/graphql-php"
}
],
"bin": [
"sailor"
],
"support": {
"issues": "https://github.com/spawnia/sailor/issues",
"source": "https://github.com/spawnia/sailor"
}
}