-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.1 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 2.1 KB
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
63
64
65
66
67
68
69
70
71
72
{
"name": "district09/qa-php",
"description": "Quality Assurance tools and configuration for PHP projects and packages.",
"license": "MIT",
"type": "library",
"keywords": [
"district09",
"qa",
"php"
],
"authors": [
{
"name": "Matthijs Van Assche",
"email": "matthijs.vanassche@district09.gent",
"role": "developer"
},
{
"name": "Maarten Segers",
"email": "maarten.segers@district09.gent",
"role": "developer"
},
{
"name": "Peter Decuyper",
"email": "peter.decuyper@district09.gent",
"role": "developer"
}
],
"homepage": "https://github.com/digipolisgent/php_package_qa-php",
"require": {
"php": "^8.3",
"ergebnis/composer-normalize": "^2.53",
"nette/neon": "^3.4",
"pdepend/pdepend": "^2.16.1 || 3.x-dev",
"phpcompatibility/php-compatibility": "^10.0@alpha",
"phpmd/phpmd": "^2.15 || 3.x-dev",
"phpro/grumphp-shim": "^2.23",
"phpspec/prophecy": "^1.26",
"phpspec/prophecy-phpunit": "^2.5",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^11.5 || ^12.5",
"slevomat/coding-standard": "^8.25.1",
"squizlabs/php_codesniffer": "^4.0.1",
"symfony/filesystem": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"systemsdk/phpcpd": "^8.0 || ^9.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"District09\\QA\\PHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"District09\\QA\\PHP\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"sort-packages": true
},
"extra": {
"grumphp": {
"config-default-path": "configs/grumphp.yml"
}
}
}