-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 944 Bytes
/
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
{
"name": "shareforcelegal/neo4jphp",
"description": "A Neo4j client that makes it possible to work with Neo4j.",
"license": "MIT",
"require": {
"php": ">=7.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"shareforcelegal/coding-standards": "dev-master",
"webmozart/assert": "^1.9"
},
"require-dev": {
"guzzlehttp/guzzle": "*",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.54",
"phpstan/phpstan-deprecation-rules": "^0.12.5",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpunit/phpunit": "^9.4"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Shareforce\\Neo4j\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shareforce\\Neo4j\\": "tests/"
}
}
}