docker-compose-viz/composer.json

34 lines
872 B
JSON
Raw Permalink Normal View History

2016-08-05 15:10:28 +02:00
{
"name": "pmsipilot/docker-compose-viz",
"description": "Docker compose graph visualization",
"require": {
"php": "^7.2",
2018-01-20 10:41:27 +01:00
"symfony/yaml": "^3.1 || ^4",
2016-08-05 15:10:28 +02:00
"symfony/console": "^3.1",
"clue/graph": "^0.9",
"graphp/graphviz": "^0.2"
},
"require-dev": {
2020-07-23 22:26:42 +02:00
"friendsofphp/php-cs-fixer": "^2",
"kahlan/kahlan": "^4.7"
2016-08-05 15:10:28 +02:00
},
"license": "MIT",
"authors": [
{
"name": "Julien Bianchi",
"email": "julien.bianchi@pmsipilot.com"
}
],
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"PMSIpilot\\DockerComposeViz\\": "src/"
}
},
2020-07-23 22:26:42 +02:00
"scripts": {
"cs": "php-cs-fixer fix",
"cst": "php-cs-fixer fix --dry-run",
"ut": "kahlan --grep='*.php' --reporter=verbose --persistent=false"
2016-08-05 15:10:28 +02:00
}
}