-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
116 lines (116 loc) · 3.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"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" : "^8.0",
"thecodingmachine/tdbm" : "~5.3.0",
"mouf/database.doctrine-dbal-wrapper": "~1.1",
"mouf/utils.common.conditioninterface" : "~2.0",
"mouf/mouf": "~2.0.27",
"mouf/utils.common.doctrine-cache-wrapper": "~1.0",
"mouf/utils.console": "^1.0"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^2.1"
},
"autoload" : {
"psr-4" : {
"Mouf\\Database\\TDBM\\" : "src/Mouf/Database/TDBM"
}
},
"autoload-dev" : {
"psr-4" : {
"Test\\" : "src/Test",
"Mouf\\Database\\TDBM\\" : "tests/Mouf/Database/TDBM"
}
},
"minimum-stability" : "dev",
"prefer-stable": true,
"extra" : {
"mouf" : {
"install" : [
{
"type" : "url",
"url" : "tdbminstall510/",
"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" : "Install TDBM",
"url" : "doc/install.md"
}, {
"title" : "Getting started",
"url" : "doc/quickstart.md"
}, {
"title" : "Add limit and offsets to your queries",
"url" : "doc/limit_offset_resultset.md"
}, {
"title" : "About DAOs",
"url" : "doc/generating_daos.md"
}, {
"title" : "Modeling inheritance",
"url" : "doc/modeling_inheritance.md"
}, {
"title" : "Advanced filtering",
"url" : "doc/advanced.md"
}, {
"title" : "JSON serialization",
"url" : "doc/json_serialization.md"
}, {
"title" : "Miscellaneous features",
"url" : "doc/miscellaneous.md"
}, {
"title" : "Configuring TDBM",
"url" : "doc/configuring.md"
}, {
"title" : "Memory management and batches processing",
"url" : "doc/memory_management.md"
},{
"title" : "Configuring naming of beans and DAOs",
"url" : "doc/configuring_naming.md"
}, {
"title" : "A quick comparison with Doctrine",
"url" : "doc/comparison_with_doctrine.md"
}, {
"title" : "Migrating",
"url" : "doc/migrating.md"
}, {
"title" : "TDBM internals",
"url" : "doc/internals.md"
}
],
"section": {
"name": "Database",
"description": "This section contains ORM tools to access your database.",
"weight": 20
}
}
},
"config": {
"allow-plugins": {
"mouf/mouf-installer": true
}
}
}