8000 Merge branch '2.6' into 2.7 · symfony/symfony-standard@8b25d1b · GitHub
[go: up one dir, main page]

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

Commit 8b25d1b

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: The security.yml file now uses the same configuration as in Symfony 2.3 (the "default" firewall is now called "main") Removed AcmeDemoBundle updated VENDORS for 2.6.9 updated VENDORS for 2.6.8 updated VENDORS for 2.6.7 Conflicts: composer.lock
2 parents 34eaf2f + 1de2a80 commit 8b25d1b

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)
0