Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 5a79cee

Browse files
committed
Merge branch '2.8'
Conflicts: README.md bin/console
2 parents 0648c44 + dab337e commit 5a79cee

File tree

9 files changed

+2
-29
lines changed

9 files changed

+2
-29
lines changed

README.md

Lines changed: 0 additions & 4 deletions
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/3.0/book/security.html
6966
[10]: https://symfony.com/doc/3.0/cookbook/email.html
7067
[11]: https://symfony.com/doc/3.0/cookbook/logging/monolog.html
71-
[12]: https://symfony.com/doc/3.0/cookbook/assetic/asset_management.html
7268
[13]: https://symfony.com/doc/3.0/bundles/SensioGeneratorBundle/index.html

app/AppCache.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
require_once __DIR__.'/AppKernel.php';
4-
53
use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
64

75
class AppCache extends HttpCache

app/AppKernel.php

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,6 @@ twig:
3838
debug: "%kernel.debug%"
3939
strict_variables: "%kernel.debug%"
4040

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

app/config/config_dev.yml

Lines changed: 0 additions & 3 deletions
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

bin/console

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ set_time_limit(0);
1515
* @var Composer\Autoload\ClassLoader $loader
1616
*/
1717
$loader = require __DIR__.'/../app/autoload.php';
18-
require_once __DIR__.'/../app/AppKernel.php';
1918

2019
$input = new ArgvInput();
2120
$env = $input->getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev');

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"type": "project",
55
"description": "The \"Symfony Standard Edition\" distribution",
66
"autoload": {
7-
"psr-4": { "": "src/" }
7+
"psr-4": { "": "src/" },
8+
"files": [ "app/AppKernel.php" ]
89
},
910
"autoload-dev": {
1011
"psr-4": { "Tests\\": "tests/" }
@@ -14,7 +15,6 @@
1415
"symfony/symfony": "3.0.x-dev",
1516
"doctrine/orm": "^2.4.8",
1617
"doctrine/doctrine-bundle": "~1.4",
17-
"symfony/assetic-bundle": "~2.3",
1818
"symfony/swiftmailer-bundle": "~2.3",
1919
"symfony/monolog-bundle": "~2.7@dev",
2020
"sensio/distribution-bundle": "~5.0@dev",

web/app.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
$apcLoader->register(true);
1919
*/
2020

21-
require_once __DIR__.'/../app/AppKernel.php';
2221
//require_once __DIR__.'/../app/AppCache.php';
2322

2423
$kernel = new AppKernel('prod', false);

web/app_dev.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
$loader = require __DIR__.'/../app/autoload.php';
2525
Debug::enable();
2626

27-
require_once __DIR__.'/../app/AppKernel.php';
28-
2927
$kernel = new AppKernel('dev', true);
3028
$kernel->loadClassCache();
3129
$request = Request::createFromGlobals();

0 commit comments

Comments
 (0)