我已经为PHP安装了Neo4j Client但它无法连接到localhost:7474

时间:2016-05-09 13:12:54

标签: php neo4j client graphaware

刚刚安装Neo4j Client for PHP使用' composer需要neoxygen / neoclient'把它放在我的php文件中

require_once' vendor / autoload.php';

使用Neoxygen \ NeoClient \ ClientBuilder;

$ client = ClientBuilder :: create() - > addConnection('默认'' http',' localhost',7474) - > build ();

但是当我在浏览器中运行这个php文件时,它没有连接。

1 个答案:

答案 0 :(得分:0)

正如github自述文件的第一行所写,该库已移植到GraphAware。其次,版本4现在已经有2周了。

请将您的依赖项升级为:

composer require graphaware/neo4j-php-client

然后安装依赖项:

composer install

最后,您可以创建连接:

require_once 'vendor/autoload.php';

use GraphAware\Neo4j\Client\ClientBuilder;

$client = ClientBuilder::create()
    ->addConnection('default', 'http://neo4j:password@localhost:7474') // Example for HTTP connection configuration (port is optional)
    ->build();

我建议您查看完整的自述文件,其中包含所有文档:

https://github.com/graphaware/neo4j-php-client