forked from aitradeinc/symfony-entity-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 833 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
{
"name": "aitradeinc/symfony-entity-generator",
"description": "Generate entities from DB tables",
"type": "symfony-bundle",
"license": "MIT",
"bin": ["bin/entity-generator"],
"authors": [
{
"name": "AITRADE, INC.",
"email": "legal@aitrade.ai",
"homepage": "https://www.aitrade.ai",
"role": "Code Owner"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.4",
"aitradeinc/php-sql-parser": "^0.3",
"nyholm/dsn": "^1.0",
"symfony/console": "^4.0|^5.0",
"symfony/filesystem": "^4.0|^5.0",
"symfony/yaml": "5.1.*",
"twig/twig": "^2.12|^3.0",
"ext-json": "*",
"symfony/dependency-injection": "^5.0",
"symfony/config": "^5.0",
"symfony/http-kernel": "^5.0"
},
"autoload": {
"psr-4": {
"EntityGenerator\\": "src/"
}
}
}