-
Notifications
You must be signed in to change notification settings - Fork 101
/
composer.json
65 lines (65 loc) · 1.81 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
{
"name": "kdyby/doctrine",
"type": "library",
"description": "Doctrine integration into Nette Framework",
"keywords": ["nette", "kdyby", "doctrine", "orm", "dbal"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "filip@prochazka.su"
}
],
"support": {
"email": "filip@prochazka.su",
"issues": "https://github.com/kdyby/doctrine/issues"
},
"require": {
"php": "^7.1",
"doctrine/orm": "~2.7",
"doctrine/dbal": "~2.9",
"kdyby/console": "^2.7.1",
"kdyby/annotations": "^3.0",
"kdyby/doctrine-cache": "^3.0",
"kdyby/strict-objects": "^2.0",
"nette/di": "^3.0",
"nette/utils": "^3.0",
"nette/finder": "^2.5"
},
"suggest": {
"kdyby/doctrine-magic-accessors": "Fast-prototyping magic accessors trait for Doctrine entities",
"kdyby/doctrine-collections-readonly": "Read-only collection wrapper for easier work with Doctrine entity collections",
"kdyby/doctrine-collections-lazy": "Lazy collection for doctrine/collections",
"kdyby/doctrine-dbal-batchimport": "Batch import & execute utils for effective processing of SQL Imports from files and strings"
},
"require-dev": {
"kdyby/events": "^3.1.1@dev",
"nette/bootstrap": "^3.0",
"nette/caching": "^3.0",
"nette/http": "^3.0",
"tracy/tracy": "^2.5",
"nette/tester": "^2.2"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Kdyby\\Doctrine\\": "src/",
"Kdyby\\Persistence\\": "src/"
},
"classmap": [
"src/Kdyby/Doctrine/exceptions.php"
]
},
"autoload-dev": {
"classmap": [
"tests/KdybyTests"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}