forked from mglaman/phpstan-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mglaman/phpstan-drupal",
"description": "Drupal extension and rules for PHPStan",
"license": "MIT",
"type": "phpstan-extension",
"authors": [
{
"name": "Matt Glaman",
"email": "nmd.matt@gmail.com"
}
],
"require": {
"php": "^7.1 || ^8.0",
"nette/finder": "^2.5",
"phpstan/phpstan": "^0.12.65",
"symfony/yaml": "~3.4.5|^4.2",
"webflo/drupal-finder": "^1.2"
},
"require-dev": {
"phpstan/phpstan-strict-rules": "^0.12.0",
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
"phpstan/phpstan-deprecation-rules": "~0.12.0",
"composer/installers": "^1.9",
"drupal/core-recommended": "^8.8@alpha || ^9.0",
"drupal/core-dev": "^8.8@alpha || ^9.0",
"drush/drush": "^9.6 | ^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core."
},
"autoload": {
"files": [
"drupal-phpunit-hack.php"
],
"psr-4": {
"PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/src"]
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
},
"installer-paths": {
"tests/fixtures/drupal/core": ["type:drupal-core"],
"tests/fixtures/drupal/libraries/{$name}": ["type:drupal-library"],
"tests/fixtures/drupal/modules/contrib/{$name}": ["type:drupal-module"],
"tests/fixtures/drupal/profiles/contrib/{$name}": ["type:drupal-profile"],
"tests/fixtures/drupal/themes/contrib/{$name}": ["type:drupal-theme"]
},
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}