-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
68 lines (68 loc) · 2.37 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
{
"name": "infinityloop-dev/graphpinator",
"description": "Easy-to-use & Fast GraphQL server implementation for PHP.",
"homepage": "https://github.com/graphpql/",
"type": "library",
"license": ["MIT"],
"authors": [
{
"name": "Václav Pelíšek",
"homepage": "https://www.peldax.com",
"role": "lead"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"infinityloop-dev/graphpinator-parser": "^1.2",
"infinityloop-dev/graphpinator-common": "^2.0",
"infinityloop-dev/utils": "^2.3",
"psr/http-message": "^2.0",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"infection/infection": "^0.27 || ^0.28 || ^0.29",
"phpstan/phpstan": "^1.10 || ^2.0",
"webthinx/codestyle": "dev-main"
},
"suggest": {
"infinityloop-dev/graphpinator-nette": "Adapters for Nette framework.",
"infinityloop-dev/graphpinator-printer": "Schema printing in GraphQL language.",
"infinityloop-dev/graphpinator-constraint-directives": "Directives for additional value validation.",
"infinityloop-dev/graphpinator-where-directives": "Directives for filtering list values.",
"infinityloop-dev/graphpinator-extra-types": "Commonly used types, both scalar or composite.",
"infinityloop-dev/graphpinator-upload": "Module to handle multipart formdata requests.",
"infinityloop-dev/graphpinator-query-cost": "Modules to limit query cost by restricting maximum depth or number of nodes.",
"infinityloop-dev/graphpinator-persisted-queries": "Module to persist validated query in cache and improve performace of repeating queries."
},
"scripts": {
"phpunit": "phpunit tests",
"phpunit-no-coverage": "phpunit tests --no-coverage",
"infection": [
"Composer\\Config::disableProcessTimeout",
"infection -j$(nproc)"
],
"phpstan": "phpstan analyze --level 3 src",
"phpstan-next": "phpstan analyze --level 4 src",
"phpstan-max": "phpstan analyze --level max src",
"codestyle": "phpcs --extensions=php src tests",
"codestyle-fix": "phpcbf --extensions=php src tests"
},
"autoload": {
"psr-4": {
"Graphpinator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graphpinator\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}