{"id":18348213,"url":"https://github.com/elasticorange/zenyatta","last_synced_at":"2026-05-06T18:33:25.040Z","repository":{"id":56976247,"uuid":"82582801","full_name":"ElasticOrange/Zenyatta","owner":"ElasticOrange","description":"Laravel package for neo4j","archived":false,"fork":false,"pushed_at":"2017-02-20T18:14:45.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-20T15:11:07.522Z","etag":null,"topics":["laravel","laravel-5-package","neo4j"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ElasticOrange.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-20T17:13:55.000Z","updated_at":"2017-02-20T21:30:12.000Z","dependencies_parsed_at":"2022-08-21T11:20:42.654Z","dependency_job_id":null,"html_url":"https://github.com/ElasticOrange/Zenyatta","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ElasticOrange/Zenyatta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticOrange%2FZenyatta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticOrange%2FZenyatta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticOrange%2FZenyatta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticOrange%2FZenyatta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ElasticOrange","download_url":"https://codeload.github.com/ElasticOrange/Zenyatta/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticOrange%2FZenyatta/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272165320,"owners_count":24884686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-26T02:00:07.904Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-5-package","neo4j"],"created_at":"2024-11-05T21:16:52.954Z","updated_at":"2026-05-06T18:33:24.996Z","avatar_url":"https://github.com/ElasticOrange.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zenyatta\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE.md)\n[![Build Status][ico-travis]][link-travis]\n[![Coverage Status][ico-scrutinizer]][link-scrutinizer]\n[![Quality Score][ico-code-quality]][link-code-quality]\n[![Total Downloads][ico-downloads]][link-downloads]\n\nLibrary that interfaces neo4j for Laravel 5.x\n\nWe like PSR2\n\n## Structure\n\nIf any of the following are applicable to your project, then the directory structure should follow industry best practises by being named the following.\n\n```\nconfig/\nsrc/\n```\n\n\n## Install\n\nVia Composer\n\n``` bash\n$ composer require elasticorange/zenyatta:dev-master\n```\n\n## Usage\n\nAdd the provider in `config/app.php`\n\n``` php\n'providers' =\u003e [\n    [...]\n    \n    // Zenyatta interface for Neo4j\n    ElasticOrange\\Zenyatta\\ZenyattaServiceProvider::class,\n```\n\nAnd the alias for good measure\n\n``` php\n'aliases' =\u003e [\n    [...]\n    \n    // Zenyatta interface for Neo4j alias\n    'Zenyatta' =\u003e ElasticOrange\\Zenyatta\\Zenyatta::class,\n```\n\nPublish the config file\n``` bash\n$ php artisan vendor:publish --tag=config\n```\n\nAdd your environment variables in your `.env` file. Check the published config file for the variable names.\n\nAfter that you can use it in your beautiful application\n\n``` php\nuse Zenyatta;\n[...]\n\n$z = new Zenyatta();\n$r = $z-\u003egetQuery(\"MATCH (n) RETURN n LIMIT 10\");\n```\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Testing\n\n``` bash\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email daniel@elasticorange.com instead of using the issue tracker.\n\n## Credits\n\n- [Daniel Luca][https://github.com/hydrarulz]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/elasticorange/zenyatta.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/elasticorange/zenyatta/master.svg?style=flat-square\n[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/elasticorange/zenyatta.svg?style=flat-square\n[ico-code-quality]: https://img.shields.io/scrutinizer/g/elasticorange/zenyatta.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/elasticorange/zenyatta.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/elasticorange/zenyatta\n[link-travis]: https://travis-ci.org/elasticorange/zenyatta\n[link-scrutinizer]: https://scrutinizer-ci.com/g/elasticorange/zenyatta/code-structure\n[link-code-quality]: https://scrutinizer-ci.com/g/elasticorange/zenyatta\n[link-downloads]: https://packagist.org/packages/elasticorange/zenyatta\n[link-author]: https://github.com/hydrarulz\n[link-contributors]: ../../contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticorange%2Fzenyatta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felasticorange%2Fzenyatta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticorange%2Fzenyatta/lists"}