-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 924 Bytes
/
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
{
"name": "staabm/cross-repo-unused-methods",
"description": "Finds unused public code across repositories",
"type": "phpstan-extension",
"license": "MIT",
"keywords": [
"dev",
"phpstan",
"phpstan-extension",
"static analysis"
],
"require": {
"php": "^7.4 || ^8.0",
"nette/robot-loader": "^4.0",
"nette/utils": "^4.0",
"phpstan/phpstan": "^1.0",
"tomasvotruba/unused-public": "^1.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^8.5|^9.5"
},
"autoload": {
"psr-4": {
"staabm\\CrossRepoUnusedPublic\\": "src/"
},
"files": [
"src/functions.php"
]
},
"scripts": {
"csfix": [
"vendor/bin/ecs --ansi --fix"
],
"phpunit": [
"phpunit"
],
"phpstan": [
"phpstan analyse -c phpstan.neon.dist"
]
},
"config": {
"sort-packages": true
},
"bin": [
"bin/merge-recordings"
]
}