-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
54 lines (47 loc) · 1.16 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
48
49
50
51
52
53
54
{
"name": "juniwalk/orm",
"description": "Nice to have tools for doctrine/orm in nette framework.",
"type": "library",
"keywords": ["nette","nettefw","doctrine","orm"],
"license": "MIT",
"authors": [{
"name": "Martin Procházka",
"email": "juniwalk@outlook.cz",
"role": "Developer"
}],
"autoload": {
"psr-4": {"JuniWalk\\ORM\\": "src/"}
},
"autoload-dev": {
"psr-4": {"JuniWalk\\ORM\\Tests\\": "tests/"}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.3",
"juniwalk/utils": "^4.0",
"nettrine/migrations": "^0.10",
"nettrine/orm": "^0.10",
"ramsey/uuid-doctrine": "^2.0"
},
"require-dev": {
"nette/forms": "^3.0",
"nette/security": "^3.2",
"nette/tester": "^2.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-nette": "^2.0",
"staabm/phpstan-todo-by": "^0.3",
"symfony/property-access": "^7.0|^8.0"
},
"suggest": {
"nette/forms": "Needed for entity reference from form input.",
"symfony/property-access": "Needed for ParamsStructured trait."
}
}