1234567891011121314151617 |
- services:
-
- auth.access_token.service:
- class: AuthBundle\Services\AccessTokenService
- arguments: [ '%client_id%', '%client_secret%', '%access_token_url%', '%infos_url%' ]
-
- auth.oauth_proxy.provider:
- class: AuthBundle\Security\Authentication\Provider\OAuthProxyProvider
- arguments: [ '@base_oauth_bundle.oauth_user_provider' ]
- public: false
-
- auth.oauth_proxy.listener:
- class: AuthBundle\Security\Firewall\OAuthProxyListener
- arguments: [ '@security.token_storage', '@security.authentication.manager', '@auth.access_token.service' ]
- public: false
- calls:
- - [ setLogger, ['@logger'] ]
|