forked from graphaware/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (54 loc) · 1.39 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
48
49
50
51
52
53
54
55
{
"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-availability"
],
"homepage": "http://graphaware.com",
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"graphaware/neo4j-common": "^3.4",
"graphaware/neo4j-bolt": "^1.5",
"symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0",
"myclabs/php-enum": "^1.4",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/client-common": "^1.0",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0",
"php-http/guzzle6-adapter": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^4.0",
"symfony/stopwatch": "^3.0"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}