forked from jawira/mysql-draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 978 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
44
45
46
47
{
"name": "jawira/mysql-draw",
"type": "library",
"description": "\ud83d\udcd0 Standalone tool to generate MySQL database diagrams",
"keywords": [
"database",
"diagram",
"doctrine",
"uml",
"symfony"
],
"license": "MIT",
"authors": [
{
"name": "Jawira Portugal",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^2.5",
"jawira/db-draw": "^1.2",
"jawira/mini-getopt": "^1.2",
"jawira/plantuml-client": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"jawira/skeleton": "^2.6",
"phpstan/phpstan": "^0.12.99"
},
"suggest": {
"phing/phing": "PHP Build Tool"
},
"config": {
"platform-check": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jawira\\MysqlDraw\\": "src/"
}
},
"support": {
"issues": "https://github.com/jawira/mysql-draw/issues"
}
}