-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.66 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
{
"name": "tomasvotruba/lines",
"description": "Measuring the size of PHP project and its PHP features",
"license": "MIT",
"bin": [
"bin/lines",
"bin/lines.php"
],
"require": {
"php": "^8.4",
"symfony/finder": "^6.4|^7.4|^8.0",
"webmozart/assert": "^2.0",
"nikic/php-parser": "^5.7",
"ondram/ci-detector": "^4.2",
"sebastian/lines-of-code": "^4.0",
"entropy/entropy": "^0.4.2"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.4",
"rector/jack": "^1.0",
"phpstan/phpstan": "^2.1",
"tracy/tracy": "^2.12",
"tomasvotruba/class-leak": "^2.1",
"phpstan/extension-installer": "^1.4",
"symplify/easy-coding-standard": "^13.2",
"symplify/phpstan-rules": "^14.12",
"rector/type-perfect": "^2.1",
"tomasvotruba/unused-public": "^2.2",
"shipmonk/composer-dependency-analyser": "^1.8"
},
"autoload": {
"psr-4": {
"TomasVotruba\\Lines\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\Lines\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyze --ansi",
"rector": "vendor/bin/rector --dry-run --ansi"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*"
},
"config": {
"platform-check": false,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}