-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
48 lines (48 loc) · 1.31 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
{
"name": "tomasvotruba/type-coverage",
"type": "phpstan-extension",
"description": "Measure type coverage of your project",
"license": "MIT",
"keywords": ["static analysis", "phpstan-extension"],
"require": {
"php": "^8.2",
"phpstan/phpstan": "^1.10.67"
},
"require-dev": {
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.5",
"symplify/easy-coding-standard": "^12.1",
"rector/rector": "^1.0.4",
"tracy/tracy": "^2.10",
"tomasvotruba/unused-public": "^0.2"
},
"autoload": {
"psr-4": {
"TomasVotruba\\TypeCoverage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\TypeCoverage\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan --ansi",
"rector": "vendor/bin/rector --dry-run --ansi",
"release": "vendor/bin/monorepo-builder release patch --ansi"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"config/extension.neon"
]
}
}
}