Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. doctrine:
  2. dbal:
  3. default_connection: default
  4. connections:
  5. default:
  6. driver: %database_driver%
  7. host: %database_host%
  8. user: %database_user%
  9. password: %database_password%
  10. charset: %database_charset%
  11. one:
  12. driver: %database_driver%
  13. host: %database_host%
  14. dbname: %superlists_database_name%
  15. user: %database_user%
  16. password: %database_password%
  17. charset: %database_charset%
  18. two:
  19. driver: %database_driver%
  20. host: %database_host%
  21. dbname: %content_database_name%
  22. user: %database_user%
  23. password: %database_password%
  24. charset: %database_charset%
  25. three:
  26. driver: %database_driver%
  27. host: %database_host%
  28. dbname: %taxonomy_database_name%
  29. user: %database_user%
  30. password: %database_password%
  31. charset: %database_charset%
  32.  
  33. orm:
  34. auto_generate_proxy_classes: %kernel.debug%
  35. entity_managers:
  36. one:
  37. connection: one
  38. mappings:
  39. OneBundle:
  40. type: annotation
  41. dir: Entity/
  42. two:
  43. connection: two
  44. mappings:
  45. TwoBundle:
  46. type: annotation
  47. dir: Entity/
  48. TwoAyBundle:
  49. type: annotation
  50. dir: Entity/
  51. three:
  52. connection: three
  53. mappings:
  54. ThreeBundle:
  55. type: annotation
  56. dir: Entity/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement