forked from neo4j-php/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.46 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
56
57
{
"name": "laudis/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": "Ghlen Nagels",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"laudis/typed-enum": "^1.1",
"php-http/discovery": "^1.13",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"php-http/message": "^1.0",
"php-ds/php-ds": "1.*",
"psr/http-client": "^1.0",
"php-http/message-factory": "^1.0",
"stefanak-michal/bolt": "^2.1"
},
"suggest": {
"ext-sockets": "Needed to implement bolt protocol",
"ext-bcmath": "Needed to implement bolt protocol",
"ext-ds": "Needed for optimal performance",
"ext-json": "Needed to implement http protocol"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"kriswallsmith/buzz": "^1.2"
},
"autoload": {
"psr-4": {
"Laudis\\Neo4j\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laudis\\Neo4j\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}