-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.34 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
{
"name": "longitude-one/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"
],
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-bcmath": "*",
"ext-json": "*",
"ext-mbstring": "*",
"graphaware/neo4j-common": "^3.5",
"longitude-one/neo4j-bolt": "^1.0",
"symfony/event-dispatcher": "^4.4 || ^5.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": "^8.5",
"symfony/stopwatch": "^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\Tests\\": "tests/"
}
}
}