-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
49 lines (49 loc) · 1.45 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
{
"name": "axelerant/drupal-quality-checker",
"type": "composer-plugin",
"description": "Code quality checking tools for Drupal project.",
"homepage": "https://github.com/axelerant/drupal-quality-checker",
"license": "proprietary",
"authors": [
{
"name": "Hussain Abbas",
"role": "Maintainer"
}
],
"require": {
"composer-plugin-api": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"drupal/coder": "^8.3.7",
"friendsoftwig/twigcs": "^4.0 || ^5.0 || ^6.0",
"mglaman/phpstan-drupal": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.0",
"phpmd/phpmd": "^2.8",
"phpro/grumphp-shim": "^2.0"
},
"support": {
"issues": "https://github.com/axelerant/drupal-quality-checker/issues",
"source": "https://github.com/axelerant/drupal-quality-checker"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"class": "AxelerantDQC\\Composer\\AxelerantDQCPlugin"
},
"autoload": {
"psr-4": {
"AxelerantDQC\\": "src"
}
},
"require-dev": {
"composer/composer": "^2.7"
}
}