forked from thecodingmachine/database.tdbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.76 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
{
"name" : "mouf/database.tdbm",
"description" : "The Database Machine is a PHP ORM that requires no configuration. The object model is deduced at runtime from the database model.",
"keywords" : [
"ORM",
"mouf",
"persistance",
"DAO",
"bean",
"model"
],
"homepage" : "https://github.com/thecodingmachine/database.tdbm",
"type" : "mouf-library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=5.5.0",
"mouf/database.dbconnection" : ">=2.0-dev,<3.0",
"mouf/utils.cache.cache-interface" : ">=2.0-dev,<3.0",
"mouf/utils.cache.no-cache" : ">=2.0-dev,<3.0",
"mouf/utils.common.conditioninterface" : ">=2.0-dev,<3.0",
"mouf/utils.log.errorlog_logger" : ">=2.0-dev,<3.0",
"mouf/database.dao-interface" : ">=2.0-dev,<3.0"
},
"suggest" : {
"ext/weakref" : "Allows efficient memory management. Useful for batches."
},
"autoload" : {
"psr-0" : {
"Mouf\\Database\\TDBM" : "src/"
}
},
"minimum-stability" : "dev",
"extra" : {
"mouf" : {
"install" : [{
"type" : "url",
"url" : "tdbminstall/",
"description" : "The install process of TDBM proposes to set up the DAOs and beans for your default DB connection."
}
],
"require-admin" : [
"src/TdbmAdmin.php"
],
"logo" : "icon.png",
"doc" : [{
"title" : "Getting started",
"url" : "doc/quickstart.md"
}, {
"title" : "About DAOs",
"url" : "doc/generating_daos.md"
}, {
"title" : "Advanced filtering",
"url" : "doc/advanced.md"
}, {
"title" : "Memory management and batches processing",
"url" : "doc/memory_management.md"
}
]
}
},
"require-dev" : {
"phpunit/phpunit" : ">3.7"
}
}