diff --git a/app/SymfonyStandard/RootPackageInstallSubscriber.php b/app/SymfonyStandard/RootPackageInstallSubscriber.php index 89cc2890a9..2f88b61ac4 100644 --- a/app/SymfonyStandard/RootPackageInstallSubscriber.php +++ b/app/SymfonyStandard/RootPackageInstallSubscriber.php @@ -18,11 +18,6 @@ class RootPackageInstallSubscriber implements EventSubscriberInterface { - public static function installAcmeDemoBundle(CommandEvent $event) - { - ScriptHandler::installAcmeDemoBundle($event); - } - public static function setupNewDirectoryStructure(CommandEvent $event) { ScriptHandler::defineDirectoryStructure($event); @@ -33,7 +28,6 @@ public static function getSubscribedEvents() return array( ScriptEvents::POST_INSTALL_CMD => array( array('setupNewDirectoryStructure', 512), - array('installAcmeDemoBundle', 0) ), ); } diff --git a/app/config/security.yml b/app/config/security.yml index b891000b1f..a187595106 100644 --- a/app/config/security.yml +++ b/app/config/security.yml @@ -1,4 +1,5 @@ security: + providers: in_memory: memory: ~ @@ -8,5 +9,5 @@ security: pattern: ^/(_(profiler|wdt|error)|css|images|js)/ security: false - default: + main: anonymous: ~