-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.73 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
{
"name": "digipolisgent/qa-drupal",
"description": "Quality Assurance tools and configuration for Drupal websites and extensions.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Matthijs Van Assche",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Maarten Segers",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Peter Decuyper",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": "^8.3",
"drupal/coder": "^8.3",
"drupal/core": "^10.3 || ^11.0",
"drupal/drupal-extension": "^5.0",
"enlightn/security-checker": "^1.4",
"ergebnis/composer-normalize": "^2.11",
"mglaman/phpstan-drupal": "^1.1",
"nette/neon": "^3.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.11",
"phpro/grumphp-shim": "^1.5.0",
"phpspec/prophecy": "^1.10",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.3",
"sebastian/phpcpd": "^6.0",
"symfony/phpunit-bridge": "^5.2 || ^6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Digipolisgent\\QA\\Drupal\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}