-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
55 lines (55 loc) · 1.42 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
{
"name": "dephpend/dephpend",
"description": "Dependency analysis for PHP",
"type": "library",
"keywords": [
"dependencies",
"dependency",
"analysis"
],
"homepage": "https://dephpend.com",
"bin": ["bin/dephpend", "bin/php-trace"],
"require": {
"php": "^7.2",
"nikic/php-parser": "^4.0",
"symfony/console": "^4 || ^5",
"symfony/event-dispatcher": "^4 || ^5"
},
"suggest": {
"ext-json": "*",
"ext-mbstring": "*",
"ext-tokenizer": "*"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.3",
"friendsofphp/php-cs-fixer": "^2.12"
},
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Michael Haeuslmann",
"email": "michael.haeuslmann@gmail.com"
}
],
"autoload": {
"psr-4": {
"Mihaeu\\PhpDependencies\\": ["src/", "tests/unit/"]
}
},
"autoload-dev": {
"psr-4": {
"Mihaeu\\PhpDependencies\\Tests\\Feature\\": ["tests/feature/"]
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php",
"tests/feature/constants.php"
]
},
"support": {
"issues": "https://github.com/mihaeu/dephpend/issues"
}
}