forked from qossmic/deptrac-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "qossmic/deptrac",
"description": "Deptrac is a static code analysis tool that helps to enforce rules for dependencies between software layers.",
"license": "MIT",
"keywords": [
"dev",
"static analysis"
],
"authors": [
{
"name": "Tim Glabisch"
},
{
"name": "Simon Mönch",
"email": "[email protected]"
},
{
"name": "Denis Brumann",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"composer/xdebug-handler": "^3.0",
"jetbrains/phpstorm-stubs": "2024.1",
"nikic/php-parser": "^4.19",
"phpdocumentor/graphviz": "^2.1",
"phpdocumentor/type-resolver": "^1.6",
"phpstan/phpdoc-parser": "^1.5",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/event-dispatcher-contracts": "^3.4",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"ergebnis/composer-normalize": "^2.45",
"symfony/stopwatch": "^6.4"
},
"suggest": {
"ext-dom": "For using the JUnit output formatter"
},
"autoload": {
"psr-4": {
"Qossmic\\Deptrac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Internal\\Qossmic\\Deptrac\\": "internal/deptrac/",
"Tests\\Qossmic\\Deptrac\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "tools"
}
}
}