如何用Laravel验证neo4j数据库?

时间:2014-08-08 05:44:39

标签: laravel neo4j

我配置了neo4j数据库并将其添加到用户名和密码中。 当我使用localhost运行时:7474它使用身份验证。 但是我在Laravel中为配置文件添加了用户名和密码,但它没有工作。

这是我的neo4j配置。

'neo4j' => array(
  'transport' => 'curl',
  'host' => 'localhost',
  'port' => '7474',
  'debug' => true,
  'proxy_dir' => '/tmp',
  'cache_prefix' => 'neo4j',
  'meta_data_cache' => 'array',
  'annotation_reader' => null,
  'username' => 'username',
  'password' => 'password',
  'pathfinder_algorithm' => null,
  'pathfinder_maxdepth' => null
)

1 个答案:

答案 0 :(得分:2)

尝试将此Neo4j包用于Laravel:https://github.com/Vinelab/NeoEloquent