Skip to content
Open

sql #19

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,19 @@ This library is the heart of the popular [Graphgen web application](http://graph
### Download the library :

```bash
git clone https://github.com/neoxygen/neogen
git clone https://github.com/graphaware/neo4j-neogen

cd neogen
```

### Define your graph model in Cypher, refer to Graphgen for documentation reference :

```cypher
(p:Person:User {uuid: uuid, dob:{dateTimeBetween:["-65years","-18 years"]}} *10)
(c:Company {name: company, slogan: catchPhrase} *5)
(p)-[:WORKS_AT *n..1]->(c)
```

### Define your graph model in YAML :

```yaml
Expand Down
32 changes: 15 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
{
"name": "neoxygen/neogen",
"name": "graphaware/neo4j-neogen",
"type": "library",
"description": "Neo4j Graph generator for PHP5.4+",
"description": "Neo4j Graph generation engine",
"keywords": [
"graph",
"neo4j",
"generator"
"generation",
"faker"
],
"homepage": "http://neoxygen.io",
"homepage": "http://graphaware.com",
"license": "MIT",
"authors": [
{
"name": "Christophe Willemsen",
"email": "[email protected]"
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"fzaninotto/faker": "~1.4",
"symfony/console": "~2.5",
"symfony/yaml": "~2.5",
"symfony/finder": "~2.5",
"symfony/dependency-injection": "~2.5",
"symfony/console": "~2.7",
"symfony/yaml": "~2.7",
"symfony/finder": "~2.7",
"symfony/dependency-injection": "~2.7",
"doctrine/collections": "~1.2",
"neoxygen/neoclient": "~2.1",
"neoxygen/neoclient": "~3.0",
"ikwattro/faker-extra": "~0.3",
"jms/serializer": "~0.16"
},
Expand All @@ -33,17 +34,14 @@
},
"autoload": {
"psr-4": {
"Neoxygen\\Neogen\\": "src"
"Neoxygen\\Neogen\\": "src/",
"GraphAware\\Neogen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neoxygen\\Neogen\\Tests\\": "tests/Neoxygen/Neogen/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"Neoxygen\\Neogen\\Tests\\": "tests/Neoxygen/Neogen/Tests",
"GraphAware\\Neogen\\Tests\\": "tests/"
}
},
"bin": ["bin/neogen"]
Expand Down
Loading