-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 974 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 974 Bytes
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
{
"name" : "elchroy/potatoorm",
"type": "library",
"homepage": "https://github.com/andela-celisha-wigwe/PotatoORM",
"keywords": ["object", "relational", "mapping", "ORM", "Potato", "PotatoORM", "database"],
"description" : "A simple php database object relational mapping package.",
"license" : "MIT",
"authors" : [
{
"name" : "andela-celisha-wigwe",
"email" : "chijioke.elisha-wigwe@andela.com",
"role" : "Software Developer"
}
],
"autoload" : {
"psr-4": {
"Elchroy\\PotatoORM\\" : "src",
"Elchroy\\PotatoORMExceptions\\" : "exceptions"
}
},
"minimum-stability": "beta",
"require" : {
"php" : ">=5.5"
},
"require-dev" : {
"satooshi/php-coveralls" : "^1.0",
"mockery/mockery": "^0.9.4",
"mikey179/vfsStream": "~1"
}
}