blob: 74f674a1f9163808465a99ed1af93f093f51d4c6 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
services:
auth.provider_collection:
class: phpbb_di_service_collection
arguments:
- @service_container
tags:
- { name: service_collection, tag: auth.provider }
auth.provider.db:
class: phpbb_auth_provider_db
arguments:
- @dbal.conn
- @config
- @request
- @user
- %core.root_path%
- %core.php_ext%
tags:
- { name: auth.provider }
auth.provider.apache:
class: phpbb_auth_provider_apache
arguments:
- @dbal.conn
- @config
- @request
- @user
- %core.root_path%
- %core.php_ext%
tags:
- { name: auth.provider }
auth.provider.ldap:
class: phpbb_auth_provider_ldap
arguments:
- @dbal.conn
- @config
- @user
tags:
- { name: auth.provider }
auth.provider.oauth:
class: phpbb_auth_provider_oauth
arguments:
- @dbal.conn
- @config
- @request
- @user
- %tables.auth_provider_oauth%
- @auth.provider.oauth.service_collection
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.amazon:
class: phpbb_auth_provider_oauth_service_amazon
arguments:
- @config
tags:
- { name: 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.box:
class: phpbb_auth_provider_oauth_service_box
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.dropbox:
class: phpbb_auth_provider_oauth_service_dropbox
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.facebook:
class: phpbb_auth_provider_oauth_service_facebook
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.fitbit:
class: phpbb_auth_provider_oauth_service_fitbit
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.foursquare:
class: phpbb_auth_provider_oauth_service_foursquare
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.github:
class: phpbb_auth_provider_oauth_service_github
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.instagram:
class: phpbb_auth_provider_oauth_service_instagram
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.linkedin:
class: phpbb_auth_provider_oauth_service_linkedin
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.microsoft:
class: phpbb_auth_provider_oauth_service_microsoft
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.paypal:
class: phpbb_auth_provider_oauth_service_paypal
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.soundclod:
class: phpbb_auth_provider_oauth_service_soundcloud
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.tumblr:
class: phpbb_auth_provider_oauth_service_tumblr
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.twitter:
class: phpbb_auth_provider_oauth_service_twitter
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.vkontakte:
class: phpbb_auth_provider_oauth_service_vkontakte
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.yammer:
class: phpbb_auth_provider_oauth_service_yammer
arguments:
- @config
tags:
- { name: auth.provider.oauth.service }
|