forked from PlumTreeSystems/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
67
{
"name": "plumtreesystems/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]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ulobby/neo4j-bolt-php"
}],
"require": {
"php": "^7.2|^8.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"graphaware/neo4j-common": "^3.4",
"myclabs/php-enum": "^1.4",
"php-http/message-factory": "^1.0",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0",
"php-http/guzzle7-adapter": "^1.0.0",
"plumtreesystems/neo4j-bolt": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/stopwatch": "^3.0",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs",
"lint-fix": "vendor/bin/phpcbf"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\Client\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}