You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							58 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							58 lines
						
					
					
						
							1.5 KiB
						
					
					
				imports:
 | 
						|
    - { resource: config.yml }
 | 
						|
framework:
 | 
						|
    router:
 | 
						|
        resource: "%kernel.root_dir%/config/routing_dev.yml"
 | 
						|
        strict_requirements: true
 | 
						|
    profiler: { only_exceptions: false }
 | 
						|
 | 
						|
web_profiler:
 | 
						|
    toolbar: true
 | 
						|
    intercept_redirects: true
 | 
						|
 | 
						|
monolog:
 | 
						|
    handlers:
 | 
						|
        main:
 | 
						|
            type:   stream
 | 
						|
            path:   "%kernel.logs_dir%/%kernel.environment%.log"
 | 
						|
            level:  debug
 | 
						|
            channels: [!event]
 | 
						|
        console:
 | 
						|
            type:   console
 | 
						|
            bubble: false
 | 
						|
            verbosity_levels:
 | 
						|
                VERBOSITY_VERBOSE: INFO
 | 
						|
                VERBOSITY_VERY_VERBOSE: DEBUG
 | 
						|
            channels: ["!doctrine"]
 | 
						|
        console_very_verbose:
 | 
						|
            type:   console
 | 
						|
            bubble: false
 | 
						|
            verbosity_levels:
 | 
						|
                VERBOSITY_VERBOSE: NOTICE
 | 
						|
                VERBOSITY_VERY_VERBOSE: NOTICE
 | 
						|
                VERBOSITY_DEBUG: DEBUG
 | 
						|
            channels: ["doctrine"]
 | 
						|
        # uncomment to get logging in your browser
 | 
						|
        # you may have to allow bigger header sizes in your Web server configuration
 | 
						|
        #firephp:
 | 
						|
        #    type:   firephp
 | 
						|
        #    level:  info
 | 
						|
        #chromephp:
 | 
						|
        #    type:   chromephp
 | 
						|
        #    level:  info
 | 
						|
 | 
						|
assetic:
 | 
						|
    use_controller: false
 | 
						|
 | 
						|
#swiftmailer:
 | 
						|
#    delivery_address: me@example.com
 | 
						|
 | 
						|
# Bower configuration
 | 
						|
#sp_bower:
 | 
						|
#    bin: "%sp_bower_bin%" # Optional
 | 
						|
#    assetic: true
 | 
						|
#    install_on_warmup: false
 | 
						|
#    bundles:
 | 
						|
#        ChamiloCoreBundle:
 | 
						|
#            cache:
 | 
						|
#                directory: %kernel.root_dir%/cache/public/components/cache
 | 
						|
 |