generated from spawnia/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
90 lines (90 loc) · 2.72 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "spawnia/sailor",
"description": "A typesafe GraphQL client for PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"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.7 || ^4",
"psr/http-client": "^1",
"symfony/console": "^5 || ^6 || ^7",
"symfony/var-exporter": "^5.3 || ^6 || ^7",
"thecodingmachine/safe": "^1 || ^2",
"webonyx/graphql-php": "^14.11.3 || ^15"
},
"require-dev": {
"bensampo/laravel-enum": "^3 || ^4.1 || ^5 || ^6",
"composer/composer": "^2",
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "~3.63.0",
"guzzlehttp/guzzle": "^7",
"jangregor/phpstan-prophecy": "^1",
"mll-lab/php-cs-fixer-config": "^5",
"mockery/mockery": "^1.4",
"nyholm/psr7": "^1.4",
"php-http/httplug": "^2",
"php-http/mock-client": "^1.4",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-mockery": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9.5.2 || ^10 || ^11",
"spawnia/phpunit-assert-directory": "^2",
"symfony/var-dumper": "^5.2.3",
"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()"
},
"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/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"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
},
"platform": {
"php": "7.4.15"
},
"preferred-install": "dist",
"sort-packages": true
}
}