forked from oosor/neo4j-php-ogm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.71 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
{
"name": "fbkl/hedera",
"description": "PHP Object Graph Mapper for Neo4j (forked)",
"license": "Apache-2.0",
"keywords": [
"neo4j",
"graph",
"ogm",
"mapper",
"mapping",
"annotations",
"database",
"cypher"
],
"homepage": "https://github.com/graphaware/neo4j-php-ogm",
"authors": [
{
"name": "Christophe Willemsen",
"email": "christophe@graphaware.com"
},
{
"name": "GraphAware Ltd",
"email": "php@graphaware.com"
},
{
"name": "Andrew",
"email": "3oosor@gmail.com"
}
],
"require": {
"php": "^7.1|^8.0",
"doctrine/annotations": "^1.10",
"doctrine/collections": "^1.6",
"doctrine/common": "^3.0",
"ext-simplexml": "*",
"kreait/firebase-php": "^5.14",
"oosor/neo4j-php-client": "^10.0",
"ext-json": "*",
"illuminate/support": "^5.0 | ^6.0 | ^7.0 | ^8.0",
"firebase/php-jwt": "^5.2"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\": "src/",
"Hedera\\": "lib/"
},
"files": [
"src/Mapping/Neo4jOGMAnnotations.php"
]
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\Tests\\": "tests/",
"Movies\\": "docs/_code/movies"
}
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"symfony/finder": "^3.0",
"symfony/stopwatch": "^3.0",
"phpstan/phpstan": "^0.12.32",
"shadoll/anemone": "^4.2"
},
"scripts": {
"phpstan": "@php ./vendor/bin/phpstan analyze --ansi"
}
}