-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
executable file
·47 lines (47 loc) · 1.21 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
40
41
42
43
44
45
46
47
{
"name" : "mysql-workbench-schema-exporter/doctrine2-exporter",
"type" : "library",
"description" : "MySQL Workbench Schema Exporter for Doctrine 2",
"keywords" : [
"mysql",
"mysql workbench",
"database",
"cli",
"doctrine"
],
"homepage" : "https://github.com/mysql-workbench-schema-exporter/doctrine2-exporter",
"license" : "MIT",
"authors" : [{
"name" : "Johannes Mueller",
"email" : "circus2@web.de",
"role" : "Developer"
}, {
"name" : "Toha",
"email" : "tohenk@yahoo.com",
"role" : "Developer"
}, {
"name" : "Robert Vock",
"email" : "robertvock82@gmail.com",
"role" : "Developer"
}
],
"require" : {
"php" : ">=7.2",
"mysql-workbench-schema-exporter/mysql-workbench-schema-exporter": "dev-master",
"ntlab/php-obj": "^1.0"
},
"autoload" : {
"psr-4" : {
"MwbExporter\\Formatter\\Doctrine2\\" : "lib/"
}
},
"extra": {
"mysql-workbench-schema-exporter" : {
"formatters" : {
"doctrine2-annotation" : "MwbExporter\\Formatter\\Doctrine2\\Annotation\\Formatter",
"doctrine2-yaml" : "MwbExporter\\Formatter\\Doctrine2\\Yaml\\Formatter",
"doctrine2-zf2inputfilterannotation" : "MwbExporter\\Formatter\\Doctrine2\\ZF2InputFilterAnnotation\\Formatter"
}
}
}
}