-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
51 lines (51 loc) · 1.46 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
{
"name": "acquia/coding-standards",
"type": "phpcodesniffer-standard",
"description": "PHP_CodeSniffer rules (sniffs) for Acquia coding standards",
"keywords": [
"Drupal",
"phpcs",
"standards",
"static analysis"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"require": {
"drupal/coder": "^8.3",
"phpcompatibility/php-compatibility": "dev-develop",
"slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"brainmaestro/composer-git-hooks": "Easily manage Git hooks in your composer config.",
"dealerdirect/phpcodesniffer-composer-installer": "Automatically install PHP_CodeSniffer coding standards (rulesets)."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Acquia\\CodingStandards\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/acquia/coding-standards/issues",
"source": "https://github.com/acquia/coding-standards"
}
}