Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.21 KB | None | 0 0
  1. parameters:
  2.     kernel.compiled_classes: []
  3.  
  4. app.config:
  5.     charset:       UTF-8
  6.     error_handler: null
  7.     csrf_secret:   xxxxxxxxxx
  8.     router:        { resource: "%kernel.root_dir%/config/routing.yml" }
  9.     validation:    { enabled: true, annotations: true }
  10.     templating:    {} #assets_version: SomeVersionScheme
  11.    session:
  12.         default_locale: en
  13.         lifetime:       3600
  14.         auto_start:     true
  15.  
  16. ## Twig Configuration
  17. twig.config:
  18.     debug:            %kernel.debug%
  19.     strict_variables: %kernel.debug%
  20.  
  21. ## Doctrine Configuration
  22. #doctrine.dbal:
  23. #    dbname:   xxxxxxxx
  24. #    user:     xxxxxxxx
  25. #    password: ~
  26.  
  27. doctrine_odm.mongodb:
  28.     auto_generate_proxy_classes: true
  29.     auto_generate_hydrator_classes:   true
  30.     default_database: vespolina
  31.     server:                           mongodb://localhost:27017
  32.     options:
  33.         connect:                        true
  34.     mappings:
  35.         AppUserBundle: ~
  36.         UserBundle: ~
  37.  
  38. ## Swiftmailer Configuration
  39. #swiftmailer.config:
  40. #    transport:  smtp
  41. #    encryption: ssl
  42. #    auth_mode:  login
  43. #    host:       smtp.gmail.com
  44. #    username:   xxxxxxxx
  45. #    password:   xxxxxxxx
  46.  
  47. imports:
  48.   - { resource: security.yml }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement