-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·79 lines (79 loc) · 2.26 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·79 lines (79 loc) · 2.26 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
73
74
75
76
77
78
79
{
"name": "savinmikhail/comments-density",
"description": "PHP code comments analyzer and Composer plugin for measuring comment density, enforcing TODO/FIXME and DocBlock thresholds, and generating reports.",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"analyzer",
"ci",
"code comments",
"code quality",
"comment",
"comment density",
"documentation",
"fixme",
"static analysis",
"todo"
],
"authors": [
{
"name": "Savin Mikhail",
"email": "mikhail.d.savin@gmail.com"
}
],
"require": {
"php": ">=8.2",
"ext-tokenizer": "*",
"composer-plugin-api": "^2.0",
"composer/composer": "^2.10.3",
"composer/xdebug-handler": "^3.0.5",
"nikic/php-parser": "^5.1",
"savinmikhail/primitive_wrappers": "^1.2",
"symfony/cache": "^7.2",
"symfony/cache-contracts": "^3.5",
"symfony/console": "^6.4 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"dg/bypass-finals": "^1.8",
"ergebnis/composer-normalize": "^2.52",
"friendsofphp/php-cs-fixer": "^3.62",
"infection/infection": "^0.31.9",
"mikey179/vfsstream": "^1.6.11",
"mockery/mockery": "^1.6.12",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.11.9",
"phpunit/phpunit": "^11.3",
"phpyh/coding-standard": "^2.6.1",
"rector/rector": "^1.2.2",
"symfony/var-dumper": "^7.1.3"
},
"autoload": {
"psr-4": {
"SavinMikhail\\CommentsDensity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SavinMikhail\\Tests\\CommentsDensity\\": "tests/"
}
},
"bin": [
"bin/comments_density"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"sort-packages": true
},
"extra": {
"class": "SavinMikhail\\CommentsDensity\\ComposerPlugin\\CommentsDensityPlugin"
}
}