forked from TomasVotruba/unused-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.58 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
{
"name": "tomasvotruba/unused-public",
"type": "phpstan-extension",
"description": "Detect unused public properties, constants and methods in your code",
"license": "MIT",
"keywords": ["static analysis", "phpstan-extension"],
"require": {
"php": "^8.1",
"phpstan/phpstan": "^1.10.19",
"nette/utils": "^3.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpstan/extension-installer": "^1.2",
"phpunit/phpunit": "^10.0",
"symplify/easy-coding-standard": "^11.2",
"rector/rector": "^0.15.1",
"tracy/tracy": "^2.9",
"php-parallel-lint/php-parallel-lint": "^1.3",
"tomasvotruba/type-coverage": "^0.1",
"symplify/easy-ci": "^11.2",
"symfony/form": "^6.3"
},
"autoload": {
"psr-4": {
"TomasVotruba\\UnusedPublic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\UnusedPublic\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"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"
]
}
}
}