-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·74 lines (74 loc) · 2.05 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
{
"name": "wunderio/code-quality",
"description": "Code Quality checker wrapper for GrumPHP",
"type": "phpcodesniffer-standard",
"license": "MIT",
"homepage": "https://github.com/wunderio/code-quality",
"keywords": [
"git","hooks","quality"
],
"authors": [
{
"name": "Hannes Kirsman",
"email": "[email protected]"
},
{
"name": "Ragnar Kurm",
"email": "[email protected]"
},
{
"name": "Guntis Jakovins",
"email": "[email protected]"
},
{
"name": "Marc Galang",
"email": "[email protected]"
},
{
"name": "Lauris Kuznecovs",
"email": "[email protected]"
},
{
"name": "Pasi Kauraniemi",
"email": "[email protected]"
}
],
"bin": ["bin/check_perms"],
"require": {
"symfony/polyfill-iconv": "^1",
"phpro/grumphp": "^2.5",
"drupal/coder": "^8",
"phpcompatibility/php-compatibility": "^9.3",
"pheromone/phpcs-security-audit": "^2.0",
"squizlabs/php_codesniffer": "^3.4",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"mglaman/phpstan-drupal": "^1.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"nette/finder": "^2.5",
"tomasvotruba/cognitive-complexity": "^0.1.1",
"webflo/drupal-finder": "^1.3"
},
"autoload": {
"psr-4": {
"Wunderio\\GrumPHP\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan/extension-installer": {
"ignore": [
"mglaman/phpstan-drupal"
]
}
}
}