forked from contributte/nextras-orm-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 990 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
{
"name": "contributte/nextras-orm-generator",
"description": "Nextras ORM Generator",
"type": "library",
"license": [
"MIT"
],
"homepage": "https://github.com/contributte/nextras-orm-generator",
"authors": [
{
"name": "Milan Felix Sulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=7.2",
"nette/database": "^3.0.0",
"nette/php-generator": "^3.1.0",
"nette/utils": "^3.0.0",
"doctrine/inflector": "^2.0.0"
},
"require-dev": {
"ninjify/nunjuck": "^0.4",
"ninjify/qa": "^0.12",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"tracy/tracy": "^2.3.0"
},
"autoload": {
"psr-4": {
"Contributte\\Nextras\\Orm\\Generator\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}