-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
32 lines (32 loc) · 1.01 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
{
"name": "scheb/tombstone-analyzer",
"description": "Generates reports based on the logs from scheb/tombstone-logger",
"keywords": ["tombstone", "dead code removal", "static code analysis", "dynamic code analysis", "report"],
"homepage": "https://github.com/scheb/tombstone-analyzer",
"license": "MIT",
"authors": [
{
"name": "Christian Scheb",
"email": "me@christianscheb.de"
}
],
"require": {
"php": ">=7.1.3",
"ext-dom": "*",
"nikic/php-parser": "^4.0|^5.0",
"phpunit/php-text-template": "^1.2.1|^2.0|^3.0",
"scheb/tombstone-core": "self.version",
"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"
},
"bin": [
"tombstone-analyzer"
],
"autoload": {
"psr-4": {
"Scheb\\Tombstone\\Analyzer\\": ""
}
}
}