[编辑]:好的,我在测试期间多次更新了这篇文章,现在它可以工作了……我在下面放了正确的代码……[/编辑]

从今天早上开始,我尝试使用“Neoxygen/Neoclient”作为服务提供者和 Facade 到 Laravel 5.1 的全新安装中

为此,我在我的 composer.json 中需要 "neoxygen/neoclient": "^3.0"

然后我在名为“NeoClientServiceProvider”的“app/Providers”中创建了一个新的 ServiceProvider。

在其注册方法中;我已经实例化了连接:

public function register()
{
    $this->app->singleton('neoclient', function ($app) {
        return ClientBuilder::create()
            ->addConnection('default', 'http', env('NEO4J_HOST'), intval(env('NEO4J_PORT')), true, env('NEO4J_USER'), env('NEO4J_PASSWORD'))
            ->setDefaultTimeout( intval(env('NEO4J_TIMEOUT')) )
            ->setAutoFormatResponse(true)
            ->build();
    });
}

接下来,我在“config/app.php”中注册了 ServiceProvider,方法是在我的提供者中包含完整类并设置别名:
'providers' => [
...
App\Providers\NeoClientServiceProvider::class
...
],
'aliases' => [
...
'NeoClient' => App\NeoClient::class
...
]

我还创建了一个 NeoClient 类,它像这样扩展了 Facade:
<?php namespace App;

use \Illuminate\Support\Facades\Facade;

class NeoClient extends Facade
{
/**
 * Get the registered name of the component.
 *
 * @return string
 */
protected static function getFacadeAccessor() { return 'neoclient'; }
}

最后我有一个这样的 Controller :
<?php namespace App\Http\Controllers;

use NeoClient;

class GenreController extends Controller
{

public function __construct()
{
    // needed authentication
    //$this->middleware('oauth');
}


public function create()
{
    $data = NeoClient::sendCypherQuery("MATCH (g:Genre) RETURN COUNT(g) AS total")->getRows();
    return response()->json($data);
}

}

PS:我知道“NeoEloquent”存在,但我不想使用这个......

++

弗雷德。

最佳答案

当然可以!这是客户的链接:

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

++

关于php - 在 Laravel 5.1 中使用 "Neoxygen/Neoclient"作为 ServiceProvider+Facade,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31452932/

10-10 14:28