forked from graphaware/neo4j-bolt-php
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.03 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
{
"name": "plumtreesystems/neo4j-bolt",
"description": "Neo4j Bolt Binary Protocol PHP Driver",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
},
{
"name": "Matas Valužis",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.2",
"ext-bcmath": "*",
"ext-mbstring": "*",
"symfony/event-dispatcher": "^3.0|^4.0|^5.0",
"graphaware/neo4j-common": "^3.4",
"myclabs/php-enum": "^1.4",
"ext-json": "*"
},
"scripts": {
"test": "vendor/bin/phpunit --exclude-group long",
"lint": "vendor/bin/phpcs",
"lint-fix": "vendor/bin/phpcbf"
},
"autoload": {
"psr-4": {
"PTS\\Bolt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PTS\\Bolt\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"symfony/stopwatch": "^2.7",
"squizlabs/php_codesniffer": "3.*"
},
"minimum-stability": "dev"
}