-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 955 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
{
"name": "kristijorgji/db-to-php",
"type": "library",
"description": "A library to generate application code based on database definition.",
"keywords": ["db-to-php", "entities", "factories", "generate", "code", "sql", "mysql", "database"],
"license": "MIT",
"authors": [
{
"name": "Kristi Jorgji"
}
],
"require": {
"php": ">=7.1",
"symfony/console": ">=3.3",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"fzaninotto/faker": "~1.7",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"kristijorgji\\DbToPhp\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"kristijorgji\\UnitTests\\": "tests/unit/",
"kristijorgji\\IntegrationTests\\": "tests/integration/",
"kristijorgji\\Tests\\Factories\\": "tests/factories/",
"kristijorgji\\Tests\\Helpers\\": "tests/helpers/"
}
},
"bin": ["bin/dbToPhp"]
}