forked from pmsipilot/docker-compose-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 872 Bytes
/
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
{
"name": "pmsipilot/docker-compose-viz",
"description": "Docker compose graph visualization",
"require": {
"php": "^7.2",
"symfony/yaml": "^3.1 || ^4",
"symfony/console": "^3.1",
"clue/graph": "^0.9",
"graphp/graphviz": "^0.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"kahlan/kahlan": "^4.7"
},
"license": "MIT",
"authors": [
{
"name": "Julien Bianchi",
"email": "[email protected]"
}
],
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"PMSIpilot\\DockerComposeViz\\": "src/"
}
},
"scripts": {
"cs": "php-cs-fixer fix",
"cst": "php-cs-fixer fix --dry-run",
"ut": "kahlan --grep='*.php' --reporter=verbose --persistent=false"
}
}