-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "phpdocumentor/graphviz",
"description": "Wrapper for Graphviz",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike van Riel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"autoload": {
"psr-4": {
"phpDocumentor\\GraphViz\\": "src/phpDocumentor/GraphViz",
"phpDocumentor\\GraphViz\\PHPStan\\": "./src/phpDocumentor/PHPStan"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\GraphViz\\Test\\": "./tests/phpDocumentor/GraphViz/Test",
"phpDocumentor\\GraphViz\\PHPStan\\": "./tests/phpDocumentor/PHPStan"
}
},
"require-dev": {
"phpunit/phpunit": "^8.2 || ^9.2",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"ext-simplexml": "*",
"psalm/phar": "^4.15 || ^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}