Created
February 15, 2012 20:28
-
-
Save Danielss89/1838790 to your computer and use it in GitHub Desktop.
Module config which ads another path for entities
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
'display_exceptions' => true, | |
'di' => array( | |
'instance' => array( | |
'alias' => array( | |
'salonCalendar' => 'Salon\Controller\CalendarController', | |
), | |
'Zend\Mvc\Router\RouteStack' => array( | |
'parameters' => array( | |
'routes' => array( | |
), | |
), | |
), | |
'orm_driver_chain' => array( | |
'parameters' => array( | |
'drivers' => array( | |
'user_annotation_driver' => array( | |
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver', | |
'namespace' => 'User\Entity', | |
'paths' => array('module/User/src/User/Entity') | |
), | |
) | |
) | |
), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment