-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) 路 2.35 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) 路 2.35 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
{
"name": "graphpql/graphpinator-symfony",
"description": "Graphpinator adapters and addons for Symfony framework.",
"homepage": "https://github.com/graphpql",
"type": "library",
"license": ["MIT"],
"authors": [
{
"name": "V谩clav Pel铆拧ek",
"homepage": "https://www.peldax.com"
}
],
"require": {
"guzzlehttp/psr7": "^2.4.3",
"infinityloop-dev/graphpinator": "^2.0",
"infinityloop-dev/graphpinator-printer": "^2.0",
"infinityloop-dev/utils": "^2.3",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"symfony/dependency-injection": "^7.3 || ^8.0",
"symfony/framework-bundle": "^7.3 || ^8.0",
"symfony/http-foundation": "^7.3 || ^8.0",
"symfony/http-kernel": "^7.3 || ^8.0",
"symfony/routing": "^7.3 || ^8.0"
},
"require-dev": {
"infinityloop-dev/graphpinator-upload": "^2.0",
"infinityloop-dev/graphpinator-persisted-queries": "^2.0",
"infinityloop-dev/graphpinator-constraint-directives": "^2.0",
"infection/infection": "^0.29",
"infinityloop-dev/graphpinator-tokenizer": "^1.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.4 || ^12.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"symfony/twig-bundle": "^7.3 || ^8.0",
"thecodingmachine/phpstan-safe-rule": "^1.4",
"webthinx/codestyle": "^1.1"
},
"scripts": {
"phpunit": "phpunit tests",
"infection": [
"Composer\\Config::disableProcessTimeout",
"infection -j$(nproc)"
],
"phpstan": "phpstan analyze --level 6 src",
"phpstan-next": "phpstan analyze --level 7 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\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graphpinator\\Symfony\\Tests\\": "tests/"
}
},
"minimum-stability": "RC",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}