Skip to content

Instantly share code, notes, and snippets.

View sseidenthal's full-sized avatar

Steve Seidenthal sseidenthal

  • Luxembourg, Germany
View GitHub Profile
@sseidenthal
sseidenthal / module.config.php
Created June 9, 2013 08:27
Howto tell Doctrine2 in ZendFramework2 where are my Yaml or Xml Entities
'doctrine' => array(
'driver' => array(
'application_entity' => array(
/* Yaml Driver Example */
'class' => 'Doctrine\ORM\Mapping\Driver\YamlDriver',
'paths' => __DIR__ . '/yml/application'
/* Xml Driver Example */
//'class' => 'Doctrine\ORM\Mapping\Driver\XmlDriver',