aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/auth_providers.yml
blob: db7c603bcdceb9be0866de760b1a76883bbe2d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
    auth.provider_collection:
        class: phpbb\auth\provider_collection
        arguments:
            - @service_container
            - @config
        tags:
            - { name: service_collection, tag: auth.provider }
    auth.provider.db:
        class: phpbb\auth\provider\db
        arguments:
            - @dbal.conn
            - @config
            - @passwords.manager
            - @request
            - @user
            - @service_container
            - %core.root_path%
            - %core.php_ext%
        tags:
            - { name: auth.provider }
    auth.provider.apache:
        class: phpbb\auth\provider\apache
        arguments:
            - @dbal.conn
            - @config
            - @passwords.manager
            - @request
            - @user
            - %core.root_path%
            - %core.php_ext%
        tags:
            - { name: auth.provider }
    auth.provider.ldap:
        class: phpbb\auth\provider\ldap
        arguments:
            - @dbal.conn
            - @config
            - @passwords.manager
            - @user
        tags:
            - { name: auth.provider }
    auth.provider.oauth:
        class: phpbb\auth\provider\oauth\oauth
        arguments:
            - @dbal.conn
            - @config
            - @passwords.manager
            - @request
            - @user
            - %tables.auth_provider_oauth_token_storage%
            - %tables.auth_provider_oauth_account_assoc%
            - @auth.provider.oauth.service_collection
            - %tables.users%
            - %core.root_path%
            - %core.php_ext%
        tags:
            - { name: auth.provider }
    auth.provider.oauth.service_collection:
        class: phpbb\di\service_collection
        arguments:
            - @service_container
        tags:
            - { name: service_collection, tag: auth.provider.oauth.service }
    auth.provider.oauth.service.bitly:
        class: phpbb\auth\provider\oauth\service\bitly
        arguments:
            - @config
            - @request
        tags:
            - { name: auth.provider.oauth.service }
    auth.provider.oauth.service.facebook:
        class: phpbb\auth\provider\oauth\service\facebook
        arguments:
            - @config
            - @request
        tags:
            - { name: auth.provider.oauth.service }
    auth.provider.oauth.service.google:
        class: phpbb\auth\provider\oauth\service\google
        arguments:
            - @config
            - @request
        tags:
            - { name: auth.provider.oauth.service }