gitextract_0kzioh7m/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── Neo4jPhpVersionTask.php ├── README.md ├── build.xml ├── composer.json ├── docblox.dist.xml ├── examples/ │ ├── bacon.php │ ├── batch_benchmarks.php │ ├── cypher.php │ ├── directions.php │ ├── example_bootstrap.php │ ├── gremlin.php │ ├── indexing.php │ └── widgets.php ├── lib/ │ └── Everyman/ │ └── Neo4j/ │ ├── Batch/ │ │ ├── AddTo.php │ │ ├── Delete.php │ │ ├── Operation.php │ │ ├── RemoveFrom.php │ │ └── Save.php │ ├── Batch.php │ ├── Cache/ │ │ ├── EntityCache.php │ │ ├── Memcache.php │ │ ├── Memcached.php │ │ ├── None.php │ │ └── Variable.php │ ├── Cache.php │ ├── Client.php │ ├── Command/ │ │ ├── AddLabels.php │ │ ├── AddStatementsToTransaction.php │ │ ├── AddToIndex.php │ │ ├── Batch/ │ │ │ ├── AddToIndex.php │ │ │ ├── Command.php │ │ │ ├── Commit.php │ │ │ ├── CreateNode.php │ │ │ ├── CreateRelationship.php │ │ │ ├── DeleteNode.php │ │ │ ├── DeleteRelationship.php │ │ │ ├── RemoveFromIndex.php │ │ │ ├── UpdateNode.php │ │ │ └── UpdateRelationship.php │ │ ├── CreateNode.php │ │ ├── CreateRelationship.php │ │ ├── DeleteIndex.php │ │ ├── DeleteNode.php │ │ ├── DeleteRelationship.php │ │ ├── ExecuteCypherQuery.php │ │ ├── ExecuteGremlinQuery.php │ │ ├── ExecutePagedTraversal.php │ │ ├── ExecuteTraversal.php │ │ ├── GetIndexes.php │ │ ├── GetLabels.php │ │ ├── GetNode.php │ │ ├── GetNodeRelationships.php │ │ ├── GetNodesForLabel.php │ │ ├── GetPaths.php │ │ ├── GetRelationship.php │ │ ├── GetRelationshipTypes.php │ │ ├── GetServerInfo.php │ │ ├── QueryIndex.php │ │ ├── RemoveFromIndex.php │ │ ├── RemoveLabels.php │ │ ├── RollbackTransaction.php │ │ ├── SaveIndex.php │ │ ├── SearchIndex.php │ │ ├── SetLabels.php │ │ ├── UpdateNode.php │ │ └── UpdateRelationship.php │ ├── Command.php │ ├── Cypher/ │ │ └── Query.php │ ├── EntityMapper.php │ ├── Exception.php │ ├── Geoff/ │ │ ├── Exporter.php │ │ └── Importer.php │ ├── Geoff.php │ ├── Gremlin/ │ │ └── Query.php │ ├── Index/ │ │ ├── NodeFulltextIndex.php │ │ ├── NodeIndex.php │ │ └── RelationshipIndex.php │ ├── Index.php │ ├── Label.php │ ├── Node.php │ ├── Pager.php │ ├── Path.php │ ├── PathFinder.php │ ├── PropertyContainer.php │ ├── Query/ │ │ ├── ResultSet.php │ │ └── Row.php │ ├── Query.php │ ├── Relationship.php │ ├── Transaction.php │ ├── Transport/ │ │ ├── Curl.php │ │ └── Stream.php │ ├── Transport.php │ ├── Traversal.php │ └── Version.php ├── phpconfig.ini ├── stub.php └── tests/ ├── cs/ │ └── ruleset.xml ├── phpunit.xml └── unit/ └── lib/ └── Everyman/ └── Neo4j/ ├── BatchTest.php ├── Cache/ │ ├── MemcacheTest.php │ ├── MemcachedTest.php │ ├── NoneTest.php │ └── VariableTest.php ├── ClientTest.php ├── Client_Batch_IndexTest.php ├── Client_Batch_NodeTest.php ├── Client_Batch_RelationshipTest.php ├── Client_CacheTest.php ├── Client_CypherTest.php ├── Client_GremlinTest.php ├── Client_IndexTest.php ├── Client_LabelTest.php ├── Client_PathTest.php ├── Client_TransactionTest.php ├── Client_TraversalTest.php ├── Cypher/ │ └── QueryTest.php ├── EntityMapperTest.php ├── GeoffTest.php ├── Gremlin/ │ └── QueryTest.php ├── IndexTest.php ├── LabelTest.php ├── NodeTest.php ├── PagerTest.php ├── PathFinderTest.php ├── PathTest.php ├── PropertyContainerTest.php ├── Query/ │ ├── ResultSetTest.php │ └── RowTest.php ├── RelationshipTest.php ├── TransactionTest.php ├── TransportTest.php └── TraversalTest.php