bazo/nette-neo4j-extension

该软件包最新版本(dev-master)没有可用的许可证信息。

Nette Neo4j 编译器扩展

dev-master 2013-05-14 19:37 UTC

This package is not auto-updated.

Last update: 2024-09-14 12:34:23 UTC


README

Nette 框架的 Neo4j 扩展

提供来自 https://github.com/lphuberdeau/Neo4j-PHP-OGM 的配置实体管理器和调试面板

通过 composer 安装

"require": {
		"bazo/nette-neo4j-extension": "@dev"
    }

在 bootstrap 中注册

$configurator->onCompile[] = function($configurator, $compiler) {
		$compiler->addExtension('neo4j', new \Bazo\Extensions\Neo4j\DI\Neo4jExtension);
};

在 config.neon 中配置选项

neo4j:
	host: localhost
	port: 7474
	cachePrefix: neo4j
	metaDataCache: apc
	proxyDir: %appDir%/models/proxies

享受吧!