-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
38 lines (38 loc) · 929 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
{
"name": "arangodb/arangodb",
"type": "library",
"description": "ArangoDB PHP client",
"keywords": ["database","ArangoDB","Arango","document store","NoSQL","multi-model","graph database","distributed"],
"homepage": "https://github.com/arangodb/arangodb-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Jan Steemann",
"homepage": "https://github.com/arangodb/arangodb-php",
"role": "Developer"
},
{
"name": "Frank Mayer",
"homepage": "https://github.com/arangodb/arangodb-php",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/arangodb/arangodb-php/graphs/contributors"
}
],
"require": {
"php": ">=5.6.0"
},
"autoload": {
"psr-0": {
"ArangoDBClient": "lib/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/arangodb/arangodb-php"
}
]
}