forked from F21/Paradox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1018 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
43
44
45
46
47
48
{
"name" : "f21/paradox",
"description" : "Paradox is an elegant Object Document Mananger (ODM) to use with the ArangoDB Document/Graph database server.",
"type" : "library",
"authors" : [{
"name" : "Francis Chuang",
"email" : "[email protected]",
"homepage" : "https://github.com/F21",
"role" : "Creator"
}
],
"keywords" : [
"ArangoDB",
"PHP",
"ODM",
"NoSQL",
"document store",
"graph",
"database"
],
"homepage" : "https://github.com/F21/Paradox",
"license" : [
"Apache-2.0"
],
"require" : {
"triagens/arangodb" : ">=2.0.0",
"php" : ">=5.4.0"
},
"require-dev" : {
"satooshi/php-coveralls": "dev-master"
},
"autoload" : {
"psr-0" : {
"Paradox" : "."
}
},
"support" : {
"source" : "https://github.com/F21/Paradox",
"issues" : "https://github.com/F21/Paradox/issues",
"wiki" : "https://github.com/F21/Paradox/wiki"
},
"repositories" : [{
"name" : "Paradox",
"type" : "vcs",
"url" : "https://github.com/triAGENS/ArangoDB-PHP"
}
]
}