forked from contributte/nextras-orm-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.04 KB
/
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
46
47
{
"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": "^2.4.0|^3.0.0.",
"nette/php-generator": "^2.5|^3.1",
"nette/utils": "^2.4|^3.0",
"doctrine/inflector": "^1.0"
},
"require-dev": {
"ninjify/qa": "^0.8.0",
"nette/tester": "^2.0",
"tracy/tracy": "^2.3.0"
},
"autoload": {
"psr-4": {
"Contributte\\Nextras\\Orm\\Generator\\": "src/"
}
},
"scripts": {
"qa": [
"linter src tests",
"codesniffer src tests"
],
"tests": [
"tester -s -p php --colors 1 -C tests/unit"
],
"coverage": [
"tester -s -p phpdbg --colors 1 -C --coverage ./coverage.xml --coverage-src ./src tests/unit"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}