This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: jacob | |
* Date: 11/7/2014 | |
* Time: 6:42 PM | |
*/ | |
namespace Zupping\UserBundle\Security\Core\User; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hwi_oauth: | |
# name of the firewall in which this bundle is active, this setting MUST be set | |
firewall_name: secured_area | |
connect: | |
account_connector: landing_user_provider | |
resource_owners: | |
facebook: | |
type: facebook | |
client_id: | |
client_secret: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zupping_landing: | |
resource: "@ZuppingLandingBundle/Resources/config/routing.yml" | |
prefix: / | |
hwi_oauth_login: | |
resource: "@HWIOAuthBundle/Resources/config/routing/login.xml" | |
prefix: /login | |
logout: | |
path: /logout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
security: | |
encoders: | |
FOS\UserBundle\Model\UserInterface: sha512 | |
role_hierarchy: | |
ROLE_ADMIN: ROLE_USER | |
ROLE_SUPER_ADMIN: ROLE_ADMIN | |
providers: | |
fos_userbundle: | |
id: fos_user.user_provider.username_email | |
firewalls: |