-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
54 lines (54 loc) · 1.72 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
{
"name": "scheb/tombstone",
"description": "Dead code detection with tombstones for PHP",
"keywords": ["tombstone", "dead code removal", "static code analysis", "dynamic code analysis"],
"homepage": "https://github.com/scheb/tombstone",
"license": "MIT",
"authors": [
{
"name": "Christian Scheb",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"ext-dom": "*",
"nikic/php-parser": "^4.0|^5.0",
"phpunit/php-text-template": "^1.2.1|^2.0|^3.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/finder": "^3.4|^4.1|^5.0|^6.0|^7.0",
"symfony/config": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/console": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^3.4|^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.9",
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/css-selector": "^4.4|^5.0",
"symfony/dom-crawler": "^4.4|^5.0",
"vimeo/psalm": "^4.30|^5.22"
},
"autoload": {
"psr-4": {
"Scheb\\Tombstone\\Analyzer\\": "src/analyzer",
"Scheb\\Tombstone\\Core\\": "src/core",
"Scheb\\Tombstone\\Logger\\": "src/logger"
}
},
"autoload-dev": {
"psr-4": {
"Scheb\\Tombstone\\Tests\\": "tests/",
"Scheb\\Tombstone\\TestApplication\\": "app/src/"
}
},
"bin": [
"src/analyzer/tombstone-analyzer"
],
"replace": {
"scheb/tombstone-analyzer": "^1.0",
"scheb/tombstone-core": "^1.0",
"scheb/tombstone-logger": "^1.0"
}
}