forked from mglaman/drupal-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 939 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
34
35
36
37
{
"name": "mglaman/drupal-check",
"description": "CLI tool for running checks on a Drupal code base",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Matt Glaman",
"email": "[email protected]"
}
],
"require": {
"php": "~7.1",
"composer/xdebug-handler": "^1.3",
"jean85/pretty-package-versions": "^1.2",
"phpstan/phpstan": "^0.11.9",
"mglaman/phpstan-drupal": "^0.11.1",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
"mglaman/phpstan-junit": "^0.11.1",
"symfony/console": "~3.2 || ~4.0",
"webflo/drupal-finder": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"sort-packages": true
},
"bin": [
"drupal-check"
],
"autoload": {
"psr-4": {
"DrupalCheck\\": "src"
}
}
}