forked from graphaware/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.43 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
{
"name": "laudis/graphaware-neo4j-php-client-legacy",
"type": "library",
"description": "Neo4j PHP legacy Client is a fork of the Graphaware Neo4j PHP Client",
"keywords": [
"graph",
"database",
"neo4j",
"cluster",
"client",
"bolt",
"http",
"high-availability"
],
"homepage": "https://laudis.tech",
"license": "MIT",
"authors": [
{
"name": "Ghlen Nagels",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"graphaware/neo4j-common": "^3.4",
"laudis/graphaware-neo4j-bolt-legacy": "^2.0",
"symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0",
"myclabs/php-enum": "^1.4",
"php-http/httplug": "^2.2.0",
"php-http/message-factory": "^1.0",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.13",
"laudis/neo4j-php-client": "v2.0.x-dev",
"php-http/message": "^1.11",
"php-http/guzzle6-adapter": "^2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/stopwatch": "^3.0"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\Tests\\": "tests/"
}
}
}