Advertisement
Guest User

Untitled

a guest
Jul 8th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # Doctrine Configuration (used to access databases and manipulate their information)
  2. doctrine:
  3. dbal:
  4. # instead of configuring the database access options in this file, we pull
  5. # them from the app/config/parameters.yml file. The reason is that config.yml
  6. # stores options that change the application behavior and parameters.yml
  7. # stores options that change from one server to another
  8. driver: "pdo_mysql"
  9. charset: UTF8
  10. host: "%database_host%"
  11. port: "%database_port%"
  12. dbname: "%database_name%"
  13. user: "%database_user%"
  14. password: "%database_password%"
  15. orm:
  16. auto_generate_proxy_classes: "%kernel.debug%"
  17. auto_mapping: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement