/** * @return DocumentManager */ public function getDocumentManager() { $factory = new DocumentManagerFactory(); $sm = Bootstrap::getServiceManager(); $sm->setAllowOverride(true); $config = $sm->get('Config'); $c = new Config(['eoko' => ['odm' => ['hydrator' => ['class' => 'Zend\\Stdlib\\Hydrator\\ClassMethods', 'strategies' => ['Eoko\\ODM\\Metadata\\Annotation\\DateTime' => new DateTimeFormatterStrategy()]]]]]); $c->merge(new Config($config)); $sm->setService('Config', $c->toArray()); return $factory->createService($sm); }
private function getClassMetadata() { return new ClassMetadata(UserEntity::class, Bootstrap::getServiceManager()->get('Eoko\\ODM\\Metadata\\Annotation')); }
} return $dir . '/' . $path; } protected static function initAutoloader() { $vendorPath = static::findParentPath('vendor'); if (is_readable($vendorPath . '/autoload.php')) { $loader = (include $vendorPath . '/autoload.php'); } else { $zf2Path = getenv('ZF2_PATH') ?: (defined('ZF2_PATH') ? ZF2_PATH : (is_dir($vendorPath . '/ZF2/library') ? $vendorPath . '/ZF2/library' : false)); if (!$zf2Path) { throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.'); } include $zf2Path . '/Zend/Loader/AutoloaderFactory.php'; } AutoloaderFactory::factory(['Zend\\Loader\\StandardAutoloader' => ['autoregister_zf' => true, 'namespaces' => [__NAMESPACE__ => __DIR__ . '/' . __NAMESPACE__]]]); } /** * @return ServiceManager */ public static function getServiceManager() { return static::$serviceManager; } public static function getConfig() { return static::$config; } } Bootstrap::init();