@@ -15,7 +15,7 @@ AsseticBundle executing this console command in your project:
1515
1616 $ composer require symfony/assetic-bundle
1717
18- Then, enable the bundle in the ``AppKernel `` file of your Symfony application::
18+ Then, enable the bundle in the ``AppKernel.php `` file of your Symfony application::
1919
2020 // app/AppKernel.php
2121
@@ -44,8 +44,8 @@ your application:
4444
4545 # app/config/config.yml
4646 assetic :
47- debug : " %kernel.debug%"
48- use_controller : false
47+ debug : ' %kernel.debug%'
48+ use_controller : ' %kernel.debug% '
4949 filters :
5050 cssrewrite : ~
5151
@@ -57,12 +57,11 @@ your application:
5757 <?xml version =" 1.0" encoding =" UTF-8" ?>
5858 <container xmlns =" http://symfony.com/schema/dic/services"
5959 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
60- xmlns : framework =" http://symfony.com/schema/dic/symfony"
61- xmlns : twig =" http://symfony.com/schema/dic/twig"
60+ xmlns : assetic =" http://symfony.com/schema/dic/assetic"
6261 xsi : schemaLocation =" http://symfony.com/schema/dic/services
6362 http://symfony.com/schema/dic/services/services-1.0.xsd
64- http://symfony.com/schema/dic/symfony
65- http://symfony.com/schema/dic/symfony/symfony -1.0.xsd" >
63+ http://symfony.com/schema/dic/assetic
64+ http://symfony.com/schema/dic/assetic/assetic -1.0.xsd" >
6665
6766 <assetic : config debug =" %kernel.debug%" use-controller =" %kernel.debug%" >
6867 <assetic : filters cssrewrite =" null" />
@@ -74,7 +73,6 @@ your application:
7473 .. code-block :: php
7574
7675 // app/config/config.php
77-
7876 $container->loadFromExtension('assetic', array(
7977 'debug' => '%kernel.debug%',
8078 'use_controller' => '%kernel.debug%',
0 commit comments