-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.05 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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": "dodo-it/entity-generator",
"type": "library",
"description": "Entity generator from database for almost any DBAL",
"keywords": ["entity", "pdo", "mysql", "database", "table", "generator", "nette"],
"license": ["MIT"],
"authors": [
{
"name": "Dalibor Korpar"
}
],
"autoload": {
"psr-4": {
"DodoIt\\EntityGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DodoIt\\EntityGenerator\\Tests\\": "tests",
"Examples\\": "examples"
}
},
"require": {
"php": "^8.1",
"nette/utils": "^3.1|^4.0",
"nette/php-generator": "^4.0",
"doctrine/inflector": "^2.0"
},
"require-dev": {
"contributte/qa": "^0.3",
"phpunit/phpunit": "^10.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}