-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·72 lines (72 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
{
"name": "savinmikhail/comments-density",
"description": "CommentDensityAnalyzer is a tool designed to analyze the comment density and quality in source code files in php. It helps maintain and improve the quality of code documentation by evaluating different types of comments and providing insights into their effectiveness and appropriateness.",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"static analysis",
"comment",
"density"
],
"authors": [
{
"name": "Savin Mikhail",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-tokenizer": "*",
"composer-plugin-api": "^2.0",
"composer/composer": "^2.8",
"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.10"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"dg/bypass-finals": "^1.8",
"ergebnis/composer-normalize": "^2.43",
"friendsofphp/php-cs-fixer": "^3.62",
"infection/infection": "^0.29.6",
"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"
}
}