我正在尝试在 php neo4j-php-client中实现 Graphaware\neo4j 客户端
我运行 composer 将文件下载到工作目录 .www 并尝试使用启动客户端
require_once(BASEPATH.'vendor/autoload.php');
use GraphAware\Neo4j\Client\ClientBuilder;
$client = ClientBuilder::create()->addConnection('default', 'http://neo4j:myPassword@localhost:7474')->build();
我得到这个错误。
<b>Fatal error</b>: Class 'GraphAware\Neo4j\Client\ClientBuilder' not found in <b>*path_to_my_www_dir\index.php*</b> on line <b>36</b><br />
为什么我会看到这个?