-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1023 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
{
"name": "kappa/doctrine",
"description": "Collection of classes for better work with Doctrine",
"keywords": ["framework", "Nette", "Kappa", "database", "Doctrine", "orm"],
"homepage": "https://github.com/Kappa-org/Doctrine",
"type": "library",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "Ondřej Záruba",
"homepage": "http://zaruba-ondrej.cz/"
}
],
"support": {
"email": "zarubaondra@gmail.com",
"issues": "https://github.com/Kappa-org/Doctrine/issues"
},
"require": {
"php": ">= 5.4.0",
"nette/di": "~2.2@dev",
"nette/utils": "~2.2@dev",
"nette/http": "~2.2@dev",
"doctrine/orm": ">=2.4.7",
"kdyby/doctrine": "@dev",
"kdyby/events": "@dev"
},
"require-dev": {
"nette/nette": "~2.2@dev",
"nette/tester": "~1.0"
},
"autoload": {
"psr-4": {
"Kappa\\Doctrine\\": "src/"
},
"classmap": [
"src/exceptions.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}