forked from graphaware/neo4j-php-ogm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.33 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
{
"name": "graphaware/neo4j-php-ogm",
"description": "PHP Object Graph Mapper for Neo4j",
"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": "[email protected]"
}, {
"name": "GraphAware Ltd",
"email": "[email protected]"
}],
"require": {
"php": "^5.6 || ^7.0",
"doctrine/annotations": "^1.2",
"doctrine/collections": "^1.3",
"doctrine/common": "^2.6",
"graphaware/neo4j-php-client": "^4.6"
},
"autoload": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\": "src/"
},
"files": ["src/Mapping/Neo4jOGMAnnotations.php"]
},
"autoload-dev": {
"psr-4": {
"GraphAware\\Neo4j\\OGM\\Tests\\": "tests/",
"Movies\\": "docs/_code/movies"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.0",
"phpunit/phpunit": "^5.2",
"symfony/finder": "^3.0",
"symfony/stopwatch": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}