-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
{
"name": "nusje2000/dependency-graph",
"description": "A PHP Library for resolving, visualizing and validating composer dependencies within a repository. Works within a monolithic repository as well.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maarten Nusteling",
"email": "[email protected]"
}
],
"bin": [
"bin/dependency-graph"
],
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyze ./src ./tests --level max"
],
"phpunit": [
"vendor/bin/phpunit"
]
},
"require": {
"php": "^7.2 || ^8.0",
"aeviiq/collection": "^3.1 || ^4.0",
"symfony/finder": "^4.4|^5.0|^6.0",
"myclabs/php-enum": "^1.7",
"symfony/console": "^4.4|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Nusje2000\\DependencyGraph\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nusje2000\\DependencyGraph\\Tests\\": "tests"
}
}
}