forked from graphaware/neo4j-php-ogm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.2 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
{
"name": "graphaware/neo4j-php-ogm",
"description": "PHP Object Graph Mapper for Neo4j",
"license": "Apache V2",
"keywords": [
"neo4j",
"graph",
"ogm",
"mapper",
"mapping",
"annotations",
"database",
"cypher"
],
"homepage": "https://github.com/graphaware/neo4j-php-ogm",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
},
{
"name": "GraphAware Ltd",
"email": "[email protected]"
}
],
"require": {
"doctrine/annotations": "^1.2",
"graphaware/neo4j-php-client": "^4.0",
"doctrine/collections": "^1.3",
"ocramius/proxy-manager": "^2.0 || ^1.0",
"doctrine/common": "^2.6"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\": "src/",
"Movies\\": "docs/_code/movies"
}
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"symfony/finder": "^3.0",
"symfony/stopwatch": "^3.0"
}
}