-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
75 lines (75 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nextras/orm",
"type": "library",
"description": "Nextras Orm framework",
"keywords": [
"orm",
"database",
"nextras"
],
"homepage": "https://github.com/nextras/orm",
"license": "MIT",
"authors": [
{
"name": "Nextras Project",
"homepage": "https://github.com/nextras/orm/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/nextras/orm/issues"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-ctype": "*",
"nette/caching": "~3.2 || ~3.1.3",
"nette/utils": "~3.0 || ~4.0",
"nextras/dbal": "~5.0",
"phpstan/phpdoc-parser": "^1.33.0 || ^2.0.0"
},
"require-dev": {
"doctrine/sql-formatter": "^1.5.1",
"nette/bootstrap": "~3.1",
"nette/di": "^3.1",
"nette/neon": "~3.0",
"nette/tester": "~2.5",
"mockery/mockery": ">=1.5.1",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.7",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-nette": "1.3.8",
"phpstan/phpstan-mockery": "1.1.3",
"phpstan/phpstan-strict-rules": "1.6.1",
"nextras/multi-query-parser": "~1.0",
"nextras/orm-phpstan": "^1.0.1",
"tracy/tracy": "~2.3"
},
"autoload": {
"psr-4": {
"Nextras\\Orm\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/cases",
"tests/inc"
]
},
"scripts": {
"phpstan": "phpstan analyse -c .phpstan.neon --memory-limit 1G",
"tests": "tester -C --colors 1 --setup ./tests/inc/setup.php ./tests/cases"
},
"config": {
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "5.0-dev"
}
}
}