vendor/bundles/Symfony/Bundle/AsseticBundle/Tests/Resources/config/config.yml
author cavaliet
Mon, 07 Jul 2014 17:23:47 +0200
changeset 122 d672f7dd74dc
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
Added tag V00.17 for changeset ada5f3d8b5b4

framework:
    charset:       UTF-8
    secret: xxxxxxxxxx
    csrf_protection:
        enabled: true
    router:        { resource: "%kernel.root_dir%/config/routing.yml" }
    validation:    { enabled: true, enable_annotations: true }
    templating:    { engines: ['twig', 'php'] }
    session:
        default_locale: en
        lifetime:       3600
        auto_start:     false

twig:
    debug:            %kernel.debug%
    strict_variables: %kernel.debug%

assetic:
    use_controller: true
    read_from:      "%kernel.root_dir%/web"
    bundles:        [ TestBundle ]
    assets:
        jquery: js/jquery.js
        app_css:
            inputs:
                - css/main.css
                - css/more.css
                - @widget_css
            filters: [ ?yui_css ]
            output:  css/packed/app.css
        widget_css:
            inputs: css/widget.sass
            filters: sass
    filters:
        sass:
            apply_to: "\.sass$"
        yui_css:
            jar: %kernel.root_dir/java/yui-compressor-2.4.6.jar
    twig:
        functions:
            yui_css: { output: css/*.css }