forked from nella/doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 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
{
"name": "nella/doctrine",
"type": "nette-addon",
"description": "Doctrine 2 ORM and Migrations addon for Nette Framework",
"keywords": ["doctrine", "nette", "orm", "migrations", "nella", "addon"],
"homepage": "http://nellafw.org",
"license": ["BSD-3-Clause", "GPL-2.0+"],
"authors": [
{
"name": "Patrik Votoček",
"email": "patrik@votocek.cz",
"homepage": "http://patrik.votocek.cz",
"role": "Developer"
},
{
"name": "Nella Project",
"homepage": "http://nella-project.org"
}
],
"support":{
"issues":"https://github.com/nella/framework/issues",
"source":"https://github.com/nella/framework/tree/master/Nella/Doctrine"
},
"autoload": {
"psr-0": {
"Nella\\Doctrine": "./"
}
},
"target-dir": "Nella/Doctrine",
"require": {
"php": ">=5.3.2",
"nette/nette": "2.0.*",
"doctrine/orm": "2.3.*"
},
"suggest": {
"nella/console": "Need for console support",
"doctrine/migrations": "Need for migrations support",
"nella/gedmo": "Integrate Doctrine Gedmo extension to Nette Framework"
}
}