-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
{
"name": "innmind/dependency-graph",
"type": "library",
"description": "Library to visualize project dependencies",
"keywords": ["composer", "dependency", "graph", "graphviz"],
"homepage": "http://github.com/Innmind/DependencyGraph",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/Innmind/DependencyGraph/issues"
},
"require": {
"php": "~8.2",
"innmind/immutable": "~5.10",
"innmind/url": "~4.1",
"innmind/operating-system": "~4.1|~5.0",
"innmind/json": "^1.1",
"innmind/graphviz": "~3.1",
"composer/semver": "~3.0",
"innmind/framework": "~2.0",
"innmind/validation": "~1.7"
},
"autoload": {
"psr-4": {
"Innmind\\DependencyGraph\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\DependencyGraph\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~10.2",
"vimeo/psalm": "~5.15",
"innmind/black-box": "~5.5",
"innmind/coding-standard": "~2.0"
},
"bin": ["dependency-graph"]
}