-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.9 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 2.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "spawnia/sailor",
"description": "A typesafe GraphQL client for PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "benedikt@franke.tech"
}
],
"homepage": "https://github.com/spawnia/sailor",
"support": {
"issues": "https://github.com/spawnia/sailor/issues",
"source": "https://github.com/spawnia/sailor"
},
"require": {
"php": "^7.4 || ^8",
"ext-json": "*",
"nette/php-generator": "^3.6.9 || ^4.1.7",
"psr/http-client": "^1",
"symfony/console": "^5 || ^6 || ^7 || ^8",
"symfony/var-exporter": "^5.3 || ^6 || ^7 || ^8",
"thecodingmachine/safe": "^1 || ^2 || ^3",
"webonyx/graphql-php": "^14.11.3 || ^15"
},
"require-dev": {
"bensampo/laravel-enum": "^3 || ^4.1 || ^5 || ^6",
"composer/composer": "^2.1",
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "~3.63.0",
"guzzlehttp/guzzle": "^7",
"jangregor/phpstan-prophecy": "^1 || ^2",
"mll-lab/php-cs-fixer-config": "^5",
"mockery/mockery": "^1.4",
"nesbot/carbon": "^2.73 || ^3",
"nyholm/psr7": "^1.4",
"ocramius/package-versions": "^1 || ^2",
"php-http/httplug": "^2",
"php-http/mock-client": "^1.4",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1.12.19 || ^2",
"phpstan/phpstan-deprecation-rules": "^1 || ^2",
"phpstan/phpstan-mockery": "^1 || ^2",
"phpstan/phpstan-phpunit": "^1 || ^2",
"phpstan/phpstan-strict-rules": "^1 || ^2",
"phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.10 || ^12.0.5",
"spawnia/phpunit-assert-directory": "^2.1",
"symfony/var-dumper": "^5.2.3 || ^6 || ^7 || ^8",
"thecodingmachine/phpstan-safe-rule": "^1.1"
},
"suggest": {
"bensampo/laravel-enum": "Use with BenSampoEnumTypeConfig",
"guzzlehttp/guzzle": "Enables using the built-in default Client",
"mockery/mockery": "Used in Operation::mock()",
"nesbot/carbon": "Use with CarbonTypeConfig"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Spawnia\\Sailor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\Sailor\\CustomTypesSrc\\": "examples/custom-types/src/",
"Spawnia\\Sailor\\CustomTypes\\": "examples/custom-types/expected/",
"Spawnia\\Sailor\\Input\\": "examples/input/expected/",
"Spawnia\\Sailor\\PhpKeywords\\": "examples/php-keywords/expected/",
"Spawnia\\Sailor\\Polymorphic\\": "examples/polymorphic/expected/",
"Spawnia\\Sailor\\Simple\\": "examples/simple/expected/",
"Spawnia\\Sailor\\Tests\\": "tests/"
}
},
"bin": [
"sailor"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": false,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}