-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
60 lines (60 loc) · 1.76 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
{
"name": "stefanak-michal/bolt",
"description": "PHP library to provide connectivity to graph database over TCP socket with Bolt specification",
"keywords": ["neo4j", "bolt", "socket", "database"],
"homepage": "https://github.com/neo4j-php/Bolt",
"type": "library",
"readme": "README.md",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"ext-curl": "*",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"support": {
"issues": "https://github.com/neo4j-php/Bolt/issues",
"source": "https://github.com/neo4j-php/Bolt",
"docs": "https://www.neo4j.com/docs/bolt/current/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/michalstefanak"
}
],
"authors": [
{
"name": "Michal Stefanak",
"role": "Developer",
"homepage": "https://www.linkedin.com/in/michalstefanak/"
}
],
"autoload": {
"psr-4": {
"Bolt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bolt\\tests\\": "tests/"
}
},
"suggest": {
"laudis/neo4j-php-client": "Neo4j-PHP-Client is the most advanced PHP Client for Neo4j",
"stefanak-michal/neo4j-bolt-wrapper": "Wrapper for Neo4j PHP Bolt library to simplify usage.",
"ext-sockets": "Needed when using Socket connection class",
"ext-openssl": "Needed when using StreamSocket connection class with SSL"
},
"scripts": {
"test": [
"@putenv XDEBUG_MODE=debug",
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
}
}