Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. 'view_manager' => [
  2. 'template_path_stack' => [
  3. __DIR__ . '/../view',
  4. ],
  5. 'template_map' => include __DIR__ . '/../template_map.php',
  6. ],
  7.  
  8. 'doctrine' => [
  9. 'driver' => [
  10. __NAMESPACE__ . '_driver' => [
  11. 'class' => AnnotationDriver::class,
  12. 'paths' => [ __DIR__ . '/../src/Entity' ]
  13. ],
  14. 'orm_default' => [
  15. 'drivers' => [
  16. __NAMESPACE__ . '\Entity' => __NAMESPACE__ . '_driver'
  17. ]
  18. ]
  19. ]
  20. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement