forked from pfrenssen/coder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.19 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
{
"name": "drupal/coder",
"type": "phpcodesniffer-standard",
"description": "Coder is a library to review Drupal code.",
"homepage": "https://www.drupal.org/project/coder",
"support": {
"issues": "https://www.drupal.org/project/issues/coder",
"source": "https://www.drupal.org/project/coder"
},
"keywords": [
"phpcs",
"standards",
"code review"
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1 || ^1.0.0",
"sirbrillig/phpcs-variable-analysis": "^2.11.7",
"slevomat/coding-standard": "^8.11",
"squizlabs/php_codesniffer": "^3.9.1",
"symfony/yaml": ">=3.4.0"
},
"autoload": {
"psr-4": {
"Drupal\\": "coder_sniffer/Drupal/",
"DrupalPractice\\": "coder_sniffer/DrupalPractice/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"require-dev": {
"phpstan/phpstan": "^1.7.12",
"phpunit/phpunit": "^8.0"
}
}