-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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": "phpdocumentor/graphviz",
"description": "Wrapper for Graphviz",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike van Riel",
"email": "mike.vanriel@naenius.com"
}
],
"require": {
"php": "^8.2"
},
"autoload": {
"psr-4": {
"phpDocumentor\\GraphViz\\": "src/phpDocumentor/GraphViz"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\GraphViz\\Test\\": "./tests/phpDocumentor/GraphViz/Test"
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"mockery/mockery": "@stable",
"phpstan/phpstan": "@stable",
"ext-simplexml": "*",
"psalm/phar": "@stable",
"squizlabs/php_codesniffer": "@stable",
"phpstan/phpstan-mockery": "@stable"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"allow-plugins": {
"ondrejmirtes/composer-attribute-collector": true
}
}
}