Skip to content

Commit 2bee277

Browse files
committedSep 28, 2015
removed AsseticBundle
1 parent f73cd59 commit 2bee277

File tree

5 files changed

+0
-22
lines changed

5 files changed

+0
-22
lines changed
 

‎README.md

-4
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ It comes pre-configured with the following bundles:
4141

4242
* [**MonologBundle**][11] - Adds support for Monolog, a logging library
4343

44-
* [**AsseticBundle**][12] - Adds support for Assetic, an asset processing
45-
library
46-
4744
* **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and
4845
the web debug toolbar
4946

@@ -68,5 +65,4 @@ Enjoy!
6865
[9]: https://symfony.com/doc/2.8/book/security.html
6966
[10]: https://symfony.com/doc/2.8/cookbook/email.html
7067
[11]: https://symfony.com/doc/2.8/cookbook/logging/monolog.html
71-
[12]: https://symfony.com/doc/2.8/cookbook/assetic/asset_management.html
7268
[13]: https://symfony.com/doc/2.8/bundles/SensioGeneratorBundle/index.html

‎app/AppKernel.php

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public function registerBundles()
1313
new Symfony\Bundle\TwigBundle\TwigBundle(),
1414
new Symfony\Bundle\MonologBundle\MonologBundle(),
1515
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
16-
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
1716
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
1817
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
1918
new AppBundle\AppBundle(),

‎app/config/config.yml

-13
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,6 @@ twig:
3636
debug: "%kernel.debug%"
3737
strict_variables: "%kernel.debug%"
3838

39-
# Assetic Configuration
40-
assetic:
41-
debug: "%kernel.debug%"
42-
use_controller: false
43-
bundles: [ ]
44-
#java: /usr/bin/java
45-
filters:
46-
cssrewrite: ~
47-
#closure:
48-
# jar: "%kernel.root_dir%/Resources/java/compiler.jar"
49-
#yui_css:
50-
# jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
51-
5239
# Doctrine Configuration
5340
doctrine:
5441
dbal:

‎app/config/config_dev.yml

-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,5 @@ monolog:
4141
# type: chromephp
4242
# level: info
4343

44-
assetic:
45-
use_controller: true
46-
4744
#swiftmailer:
4845
# delivery_address: me@example.com

‎composer.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"symfony/symfony": "2.8.x-dev",
1212
"doctrine/orm": "^2.4.8",
1313
"doctrine/doctrine-bundle": "~1.4",
14-
"symfony/assetic-bundle": "~2.3",
1514
"symfony/swiftmailer-bundle": "~2.3",
1615
"symfony/monolog-bundle": "~2.4",
1716
"sensio/distribution-bundle": "~5.0@dev",

0 commit comments

Comments
 (0)
Please sign in to comment.