Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.84 KB | None | 0 0
  1. app.config:
  2.     charset:       UTF-8
  3.     error_handler: null
  4.     csrf_secret:   xxxxxxxxxx
  5.     router:        { resource: "%kernel.root_dir%/config/routing.yml" }
  6.     validation:    { enabled: true, annotations: true }
  7.     templating:    { engines: ['php'] } #assets_version: SomeVersionScheme
  8.    session:
  9.         default_locale: en
  10.         lifetime:       3600
  11.         auto_start:     true
  12.  
  13. # Twig Configuration
  14. twig.config:
  15.     debug:            %kernel.debug%
  16.     strict_variables: %kernel.debug%
  17.  
  18. ## Doctrine Configuration
  19. #doctrine.dbal:
  20. #    dbname:   xxxxxxxx
  21. #    user:     xxxxxxxx
  22. #    password: ~
  23. #doctrine.orm: ~
  24.  
  25. ## Swiftmailer Configuration
  26. #swiftmailer.config:
  27. #    transport:  smtp
  28. #    encryption: ssl
  29. #    auth_mode:  login
  30. #    host:       smtp.gmail.com
  31. #    username:   xxxxxxxx
  32. #    password:   xxxxxxxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement