-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
70 lines (70 loc) · 1.93 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
{
"name": "tomasvotruba/lines",
"description": "Measuring the size of PHP project",
"license": "MIT",
"bin": [
"bin/lines",
"bin/lines.php"
],
"require": {
"php": "^8.2",
"symfony/console": "^6.4",
"symfony/finder": "^6.4",
"illuminate/container": "^11.0",
"webmozart/assert": "^1.11",
"nikic/php-parser": "^4.18",
"sebastian/lines-of-code": "^2.0",
"nunomaduro/termwind": "^1.15"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2.10",
"phpstan/phpstan": "^1.12",
"symplify/easy-coding-standard": "^12.4",
"tracy/tracy": "^2.10",
"tomasvotruba/class-leak": "^0.2",
"phpstan/extension-installer": "^1.4",
"symplify/vendor-patches": "^11.3",
"symplify/phpstan-rules": "^13.0",
"rector/type-perfect": "^0.1.8"
},
"autoload": {
"psr-4": {
"TomasVotruba\\Lines\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\Lines\\Tests\\": "tests"
},
"files": [
"tests/functions.php"
]
},
"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/string": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-mbstring": "*"
},
"config": {
"platform-check": false,
"allow-plugins": {
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"symfony/console": [
"patches/symfony-console-helper-helper-php.patch"
]
}
}
}