-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "libaro/quality-tools",
"description": "Libaro quality :D",
"type": "composer-plugin",
"authors": [
{
"name": "libaro (Libaro)",
"email": "system@libaro.be"
}
],
"autoload": {
"psr-4": {
"Libaro\\QualityTools\\": "src/"
}
},
"require": {
"php": "^8.0",
"phpro/grumphp": "^1.15",
"composer-plugin-api": "~2.0",
"phpstan/extension-installer": "^1.2",
"spaze/phpstan-disallowed-calls": "^2.12",
"phpstan/phpstan": "^1.10",
"nunomaduro/larastan": "^2.0",
"maglnet/composer-require-checker": "^4.5",
"php-parallel-lint/php-parallel-lint": "^1.3",
"enlightn/security-checker": "^1.10",
"friendsofphp/php-cs-fixer": "^3.16",
"tomasvotruba/bladestan": "^0.2.1",
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "^2.13"
},
"config": {
"allow-plugins": {
"phpro/grumphp": false,
"phpstan/extension-installer": true
}
},
"extra": {
"class": "Libaro\\QualityTools\\Composer\\Plugin"
},
"require-dev": {
"composer/composer": "^2.5"
}
}