-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
composer.json
48 lines (48 loc) · 1.29 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
{
"name": "mglaman/drupal-check",
"description": "CLI tool for running checks on a Drupal code base",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Matt Glaman",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8.0",
"composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0",
"jangregor/phpstan-prophecy": "^1.0",
"jean85/pretty-package-versions": "^1.5.0 || ^2.0.1",
"mglaman/phpstan-drupal": "^1.0.0",
"nette/neon": "^3.1",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0 || ^7.0",
"symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0 || ^7.0",
"webflo/drupal-finder": "^1.1"
},
"require-dev": {
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.5"
}
},
"bin": [
"drupal-check"
],
"autoload": {
"psr-4": {
"DrupalCheck\\": "src"
}
},
"extra": {
"violinist": {
"one_pull_request_per_package": 1
}
}
}