-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 940 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
{
"name": "mvccore/ext-model-db",
"type": "library",
"description": "MvcCore - Extension - Model - Database - base model database extension with base and abstract classes and interfaces to work with sql queries in more comfortable API.",
"keywords": [
"mvc",
"mvccore",
"framework",
"extension",
"plugin",
"plug-in",
"ext",
"model",
"db",
"database",
"abstract",
"interface"
],
"license": ["BSD-3-Clause"],
"authors": [{
"name": "Tom Flidr",
"homepage": "https://github.com/tomFlidr"
}],
"require": {
"php": ">=5.4.0",
"mvccore/mvccore": "^5.3"
},
"suggest": {
"mvccore/ext-cache-*": "MvcCore cache extensions to speed up operations driven by class anotations."
},
"autoload": {
"classmap": [
"src/"
],
"files": [
"src/MvcCore/Ext/Models/Db/FuncHelpers/Table.php",
"src/MvcCore/Ext/Models/Db/FuncHelpers/Columns.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}