-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
45 lines (45 loc) · 980 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
44
45
{
"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": ">=8.1",
"nette/database": "^3.1.9",
"nette/php-generator": "^4.1.2",
"nette/utils": "^4.0.3",
"doctrine/inflector": "^2.0.8"
},
"require-dev": {
"contributte/qa": "^0.4",
"contributte/tester": "^0.4",
"contributte/phpstan": "^0.1",
"tracy/tracy": "^2.10.5"
},
"autoload": {
"psr-4": {
"Contributte\\Nextras\\Orm\\Generator\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}