-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
39 lines (39 loc) · 989 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
{
"name": "ironbound/db",
"description": "Provides models and custom query objects for custom database tables in WordPress.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Iron Bound Designs",
"email": "[email protected]"
}
],
"require": {
"php" : ">=5.3.0",
"ironbound/cache": "^1.0.0",
"doctrine/collections": "^1.3",
"doctrine/inflector": "^1.1"
},
"autoload": {
"psr-4": {
"IronBound\\DB\\": "src/",
"IronBound\\DB\\Tests\\": "tests/"
},
"files": [
"src/load.php"
]
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ironbound/wpevents": "^1.0"
},
"suggest": {
"ironbound/wpevents": "Allows for firing events when certain actions occur on a model."
},
"config": {
"platform": {
"php": "5.3.29"
}
}
}