-
Notifications
You must be signed in to change notification settings - Fork 137
Home
neo4jphp is a PHP library wrapping the Neo4j graph database.
- Introduction
- Getting Started
- Nodes and Relationships
- Labels
- Indexes
- Batches
- Paths
- Traversals
- Cypher and Gremlin Queries
- Cypher Transactions
- GEOFF
- Caching
- API
Constructive feedback is always welcome!
File all bug reports and feature requests as issues on GitHub.
If you have any questions about neo4jphp, Stack Overflow is the best place to ask them. Make sure all questions are tagged with neo4j
and php
. Additionally, the Neo4j forums are a great source of information and help for Neo4j and graph databases in general. If you ask a question about neo4jphp on the forums, please indicate in your message that you are using the REST interface and accessing it via PHP.
http://github.com/jadell/neo4jphp/graphs/contributors
All contributions are welcome! If you wish to contribute, please read the following guidelines:
- Before implementing new features, open an issue describing the feature.
- Include unit tests for any bug fixes or new features.
- Include only one bug fix or new feature per pull request.
- Make sure all unit tests run before submitting a pull request.
- Follow the coding style of the existing code: tabs for indentation, class/method braces on newlines, spaces after commas, etc.
- Contributing code means that you agree that any contributed code, documentation, or other artifacts may be released under the same license as the rest of the library.
Install the developer tools:
> composer install --dev
After making your changes, run the unit tests and code style checker:
> vendor/bin/phing ci
Run only unit tests:
> vendor/bin/phing test
Run only style checker:
> vendor/bin/phing cs
Pull requests will not be accepted unless all tests pass and all code meets the existing style guidelines.
- Python - py2neo by Nigel Small
Nigel also created the GEOFF graph import/export format. - PHP - Neo4J-REST-PHP-API-client by Todd Chafee