-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
72 lines (72 loc) · 1.97 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
{
"name": "worksome/graphlint",
"description": "A static analysis tool for GraphQl",
"type": "project",
"require": {
"php": "^8.2",
"illuminate/support": "^10.0",
"jawira/case-converter": "^3.5",
"symfony/config": "^6.0",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.0",
"symfony/filesystem": "^6.4",
"symfony/http-kernel": "^6.0",
"symplify/autowire-array-parameter": "^11.0",
"symplify/package-builder": "^11.0",
"thecodingmachine/safe": "^2.4",
"webonyx/graphql-php": "^15.0.1"
},
"require-dev": {
"pestphp/pest": "^2.34",
"symfony/var-dumper": "^6.4",
"symplify/easy-testing": "^11.0",
"worksome/coding-style": "^2.10.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Worksome\\Graphlint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\Graphlint\\Tests\\": "tests/"
}
},
"bin": [
"bin/graphlint"
],
"authors": [
{
"name": "Oliver Nybroe",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
},
"scripts": {
"ecs": "vendor/bin/ecs",
"ecs:fix": "vendor/bin/ecs --fix",
"phpstan": "vendor/bin/phpstan analyse",
"rector": "vendor/bin/rector process --dry-run --ansi",
"rector:fix": "vendor/bin/rector process --ansi",
"pest": "vendor/bin/pest --parallel",
"test": [
"@ecs",
"@phpstan",
"@rector",
"@pest"
]
},
"suggest": {
"ext-dom": "Required for Checkstyle output format."
},
"minimum-stability": "dev",
"prefer-stable": true
}