-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (44 loc) · 1.08 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
{
"name": "neoxygen/graphgen",
"type": "application",
"description": "Neo4j graph generator based on the Cypher spec",
"keywords": [
"graph",
"neo4j",
"cypher",
"generation"
],
"homepage": "http://www.neoxygen.io",
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
}
],
"require": {
"neoxygen/neogen": "~0.5@dev",
"silex/silex": "~1.1",
"twig/twig": "~1.16",
"symfony/twig-bridge": "~2.6",
"michelf/php-markdown": "~1.4",
"hashids/hashids": "~1.0",
"neoxygen/neo4j-console-client": "~0.1"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"phpunit/phpunit": "4.*",
"bossa/phpspec2-expect": "*",
"behat/behat": "~3.0"
},
"autoload": {
"psr-4": {
"Neoxygen\\Graphgen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Neoxygen\\Graphgen\\Tests\\": "tests/Neoxygen/Graphgen/Tests"
}
}
}