forked from neo4j-php/neo4j-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.09 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
{
"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]"
}
],
"scripts": {
"cs": " docker run --rm -it -w=/app -v ${PWD}:/app oskarstark/php-cs-fixer-ga:2.19.0"
},
"require": {
"php": "^7.4 || ^8.0",
"laudis/typed-enum": "^1.3.2",
"php-http/discovery": "^1.13",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"php-http/message": "^1.0",
"php-http/message-factory": "^1.0",
"stefanak-michal/bolt": "^3.1.1",
"symfony/polyfill-php80": "^1.2",
"ext-json": "*"
},
"suggest": {
"ext-bcmath": "Needed to implement bolt protocol",
"composer-runtime-api": "Install composer 2 for auto detection of version in user agent"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"kriswallsmith/buzz": "^1.2",
"vimeo/psalm": "^4.20",
"friendsofphp/php-cs-fixer": "^3.5",
"psalm/plugin-phpunit": "^0.15.1",
"monolog/monolog": "^2.2",
"psr/log": "^1.1",
"php-di/php-di": "^6.3",
"vlucas/phpdotenv": "^5.0",
"psr/container": "^1.1",
"lctrs/psalm-psr-container-plugin": "^1.3",
"symfony/uid": "^5.0"
},
"autoload": {
"psr-4": {
"Laudis\\Neo4j\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laudis\\Neo4j\\Tests\\": "tests/",
"Laudis\\Neo4j\\TestkitBackend\\": "testkit-backend/src"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}