-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
79 lines (79 loc) · 2.21 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"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",
"driver"
],
"license": "MIT",
"authors": [
{
"name": "Ghlen Nagels",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"laudis/typed-enum": "^1.3.2",
"php-http/discovery": "^1.13",
"psr/http-message": "^1.0|^2.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"php-http/message": "^1.0",
"stefanak-michal/bolt": "^7.1.4",
"symfony/polyfill-php80": "^1.2",
"psr/simple-cache": ">=2.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"provide": {
"psr/simple-cache-implementation": "2.0|3.0"
},
"suggest": {
"ext-bcmath": "Needed to implement bolt protocol",
"ext-sysvsem": "Needed for enabling connection pooling between processes",
"composer-runtime-api": "Install composer 2 for auto detection of version in user agent",
"psr/log": "Needed to enable logging"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"kriswallsmith/buzz": "^1.2",
"vimeo/psalm": "^5.0",
"friendsofphp/php-cs-fixer": "3.15.0",
"psalm/plugin-phpunit": "^0.18",
"monolog/monolog": "^2.2",
"symfony/uid": "^5.0",
"symfony/var-dumper": "^5.0",
"cache/integration-tests": "dev-master",
"kubawerlos/php-cs-fixer-custom-fixers": "3.13.*",
"rector/rector": "^1.0",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"Laudis\\Neo4j\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laudis\\Neo4j\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
}
}