Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用Laravel验证neo4j数据库?_Laravel_Neo4j - Fatal编程技术网

如何使用Laravel验证neo4j数据库?

如何使用Laravel验证neo4j数据库?,laravel,neo4j,Laravel,Neo4j,我配置了neo4j数据库,并将其添加到用户名和密码中。 当我使用localhost:7474运行时,它将与身份验证一起工作。 但我在Laravel的配置文件中添加了用户名和密码,但它不起作用 这是我的neo4j配置 'neo4j' => array( 'transport' => 'curl', 'host' => 'localhost', 'port' => '7474', 'debug' => true, 'proxy_dir' =>

我配置了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
)

尝试为Laravel使用此Neo4j软件包:

您使用哪个库连接Laravel?您可以将http连接头的日志粘贴到数据库中吗?