Files
drmaterac.pl/modules/pshowsso/config/front/services.yml
2025-10-20 14:10:54 +02:00

62 lines
1.5 KiB
YAML

services:
_defaults:
public: false
autowire: true
autoconfigure: true
prestashow.customer.service:
class: Prestashow\PShowSSO\Service\CustomerService
arguments:
- '@hashing'
- '@context'
public: true
prestashow.service.sso.github:
class: Prestashow\PShowSSO\SSO\Github\GithubService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.google:
class: Prestashow\PShowSSO\SSO\Google\GoogleService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.apple:
class: Prestashow\PShowSSO\SSO\Apple\AppleService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.facebook:
class: Prestashow\PShowSSO\SSO\Facebook\FacebookService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.x:
class: Prestashow\PShowSSO\SSO\X\XService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.microsoft:
class: Prestashow\PShowSSO\SSO\Microsoft\MicrosoftService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true
prestashow.service.sso.keycloak:
class: Prestashow\PShowSSO\SSO\Keycloak\KeycloakService
arguments:
- '@context'
- '@prestashow.customer.service'
public: true