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

Commit 1de2a80

Browse files
committed
feature #819 [2.6+] Removed AcmeDemoBundle (javiereguiluz)
This PR was merged into the 2.6 branch. Discussion ---------- [2.6+] Removed AcmeDemoBundle | Q | A | ------------- | --- | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - This removes the AcmeDemoBundle for Symfony Standard 2.6+. Commits ------- 42b1224 The security.yml file now uses the same configuration as in Symfony 2.3 (the "default" firewall is now called "main") eb4a8e1 Removed AcmeDemoBundle
2 parents da914fb + 42b1224 commit 1de2a80

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

app/SymfonyStandard/RootPackageInstallSubscriber.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@
1818

1919
class RootPackageInstallSubscriber implements EventSubscriberInterface
2020
{
21-
public static function installAcmeDemoBundle(CommandEvent $event)
22-
{
23-
ScriptHandler::installAcmeDemoBundle($event);
24-
}
25-
2621
public static function setupNewDirectoryStructure(CommandEvent $event)
2722
{
2823
ScriptHandler::defineDirectoryStructure($event);
@@ -33,7 +28,6 @@ public static function getSubscribedEvents()
3328
return array(
3429
ScriptEvents::POST_INSTALL_CMD => array(
3530
array('setupNewDirectoryStructure', 512),
36-
array('installAcmeDemoBundle', 0)
3731
),
3832
);
3933
}

app/config/security.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
security:
2+
23
providers:
34
in_memory:
45
memory: ~
@@ -8,5 +9,5 @@ security:
89
pattern: ^/(_(profiler|wdt|error)|css|images|js)/
910
security: false
1011

11-
default:
12+
main:
1213
anonymous: ~

0 commit comments

Comments
 (0)