forked from vijaycs85/drupal-quality-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "vijaycs85/drupal-quality-checker",
"description": "Setups code quality checking tools for Drupal project.",
"type": "composer-plugin",
"license": "MIT",
"homepage": "https://github.com/vijaycs85/drupal-quality-checker",
"authors": [
{
"name": "Vijaya Chandran Mani",
"homepage": "https://www.drupal.org/u/vijaycs85",
"role": "Maintainer"
}
],
"require": {
"phpro/grumphp": "^0.11.6",
"composer/composer": "~1.0",
"drupal/coder": "^8.2.12",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"extra": {
"class": "DrupalQualityChecker\\Composer\\GrumPHPPlugin"
},
"autoload": {
"psr-4": {
"DrupalQualityChecker\\": "src"
}
},
"support": {
"issues": "https://github.com/vijaycs85/drupal-quality-checker/issues",
"source": "https://github.com/vijaycs85/drupal-quality-checker"
}
}