forked from graphaware/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (46 loc) · 1.07 KB
/
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
{
"name": "graphaware/neo4j-php-client",
"type": "library",
"description": "Neo4j-PHP-Client is the most advanced PHP Client for Neo4j",
"keywords": [
"graph",
"database",
"neo4j",
"cluster",
"client",
"bolt",
"http",
"high-availibility"
],
"homepage": "http://graphaware.com",
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.6",
"ext-bcmath": "*",
"ext-mbstring": "*",
"graphaware/neo4j-bolt": "^1.5",
"guzzlehttp/guzzle": "^6.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"myclabs/php-enum": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"symfony/stopwatch": "^3.0"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\Tests\\": "tests/"
}
}
}