-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.85 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "infinityloop-dev/graphpinator-persisted-queries",
"description": "Module to persist validated query in cache and improve performace of repeating queries.",
"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",
"infinityloop-dev/graphpinator": "^2.0",
"infinityloop-dev/utils": "^2.3",
"psr/simple-cache": "^3.0.0",
"infinityloop-dev/graphpinator-parser": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"infection/infection": "^0.29",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"thecodingmachine/phpstan-safe-rule": "^1.4",
"webthinx/codestyle": "^v1.0"
},
"scripts": {
"phpunit": "phpunit tests",
"infection": [
"Composer\\Config::disableProcessTimeout",
"infection -j$(nproc)"
],
"phpstan": "phpstan analyze --level 4 src",
"phpstan-next": "phpstan analyze --level 5 src",
"phpstan-max": "phpstan analyze --level max src",
"codestyle": "phpcs --extensions=php src tests",
"codestyle-fix": "phpcbf --extensions=php src tests",
"dependencies": "composer-dependency-analyser"
},
"autoload": {
"psr-4": {
"Graphpinator\\PersistedQueries\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graphpinator\\PersistedQueries\\Tests\\": "tests/"
}
},
"minimum-stability": "RC",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}