sathyashrayan

module.config.php

Jul 26th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. 'doctrine' => [
  2.         'driver' => [
  3.             __NAMESPACE__ . '_driver' => [
  4.                 'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
  5.                 'cache' => 'array',
  6.                 'paths' => [
  7.                     __DIR__ . '/../src/Entity'
  8.                 ],
  9.             ],
  10.             'orm_default'             => [
  11.                 'drivers' => [
  12.                     __NAMESPACE__ => __NAMESPACE__ . '_driver'
  13.                 ]
  14.             ]
  15.         ]
  16.     ]
Add Comment
Please, Sign In to add comment