-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 948 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
34
35
36
37
38
39
40
41
42
43
{
"name": "tasuku43/mermaid-class-diagram",
"description": "Generate class diagrams code written in mermaid-js.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"diagram",
"diagrams",
"uml",
"mermaid",
"mermaidjs",
"diagram-generator",
"class-diagram"
],
"autoload": {
"psr-4": {
"Tasuku43\\MermaidClassDiagram\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tasuku43\\Tests\\MermaidClassDiagram\\": "tests/"
}
},
"authors": [
{
"name": "tasuku43",
"email": "[email protected]"
}
],
"bin": [
"mermaid-class-diagram"
],
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"require": {
"symfony/finder": "^7.0",
"nikic/php-parser": "^4.14",
"symfony/console": "^7.0"
}
}