This commit is contained in:
2025-10-20 14:10:54 +02:00
parent 75ca8fd840
commit d2c1970ef8
732 changed files with 101915 additions and 2 deletions

View File

@@ -0,0 +1,61 @@
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