neo4jphp: Cannot instantiate abstract class Everyman\Neo4j\Transport
问题 maybe a simple question but for me as starter with Neo4j a hurdle. I installed the neo4jphp with composer in the same directory as my application. Vendor-Subfolder has been created and the everyman/neo4j folder below is available. For a first test I used this code snippet from the examples: spl_autoload_register(function ($className) { $libPath = 'vendor\\'; $classFile = $className.'.php'; $classPath = $libPath.$classFile; if (file_exists($classPath)) { require($classPath); } }); require(