2013-06-20 21:29:16 -04:00
|
|
|
services:
|
2013-06-20 22:50:35 -04:00
|
|
|
auth.provider_collection:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\di\service_collection
|
2013-06-20 22:50:35 -04:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: auth.provider }
|
2013-06-20 21:55:25 -04:00
|
|
|
auth.provider.db:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\auth\provider\db
|
2013-06-20 21:55:25 -04:00
|
|
|
arguments:
|
|
|
|
- @dbal.conn
|
|
|
|
- @config
|
2013-10-02 13:28:38 +02:00
|
|
|
- @passwords.manager
|
2013-06-20 21:55:25 -04:00
|
|
|
- @request
|
|
|
|
- @user
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-06-20 22:50:35 -04:00
|
|
|
tags:
|
|
|
|
- { name: auth.provider }
|
2013-06-20 21:55:25 -04:00
|
|
|
auth.provider.apache:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\auth\provider\apache
|
2013-06-20 21:55:25 -04:00
|
|
|
arguments:
|
2013-06-20 22:21:22 -04:00
|
|
|
- @dbal.conn
|
|
|
|
- @config
|
2013-10-02 13:28:38 +02:00
|
|
|
- @passwords.manager
|
2013-06-20 22:21:22 -04:00
|
|
|
- @request
|
|
|
|
- @user
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-06-20 22:50:35 -04:00
|
|
|
tags:
|
|
|
|
- { name: auth.provider }
|
2013-06-20 21:55:25 -04:00
|
|
|
auth.provider.ldap:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\auth\provider\ldap
|
2013-06-20 21:55:25 -04:00
|
|
|
arguments:
|
2013-06-20 22:11:24 -04:00
|
|
|
- @dbal.conn
|
|
|
|
- @config
|
2013-10-02 13:28:38 +02:00
|
|
|
- @passwords.manager
|
2013-06-20 22:11:24 -04:00
|
|
|
- @user
|
2013-06-20 22:50:35 -04:00
|
|
|
tags:
|
|
|
|
- { name: auth.provider }
|
2013-07-13 10:30:54 -04:00
|
|
|
auth.provider.oauth:
|
2013-09-16 03:22:13 +02:00
|
|
|
class: phpbb\auth\provider\oauth\oauth
|
2013-07-13 10:30:54 -04:00
|
|
|
arguments:
|
|
|
|
- @dbal.conn
|
|
|
|
- @config
|
|
|
|
- @request
|
|
|
|
- @user
|
2013-07-18 12:50:42 -04:00
|
|
|
- %tables.auth_provider_oauth_token_storage%
|
|
|
|
- %tables.auth_provider_oauth_account_assoc%
|
2013-07-14 17:40:09 -04:00
|
|
|
- @auth.provider.oauth.service_collection
|
2013-08-02 14:37:15 -04:00
|
|
|
- %tables.users%
|
2013-08-24 21:34:23 -04:00
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-07-13 10:30:54 -04:00
|
|
|
tags:
|
|
|
|
- { name: auth.provider }
|
2013-07-14 17:03:02 -04:00
|
|
|
auth.provider.oauth.service_collection:
|
2013-09-16 03:22:13 +02:00
|
|
|
class: phpbb\di\service_collection
|
2013-07-14 17:03:02 -04:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: auth.provider.oauth.service }
|
|
|
|
auth.provider.oauth.service.bitly:
|
2013-09-16 03:22:13 +02:00
|
|
|
class: phpbb\auth\provider\oauth\service\bitly
|
2013-07-14 17:26:09 -04:00
|
|
|
arguments:
|
|
|
|
- @config
|
2013-07-18 11:51:10 -04:00
|
|
|
- @request
|
2013-07-14 17:26:09 -04:00
|
|
|
tags:
|
2013-07-14 17:45:05 -04:00
|
|
|
- { name: auth.provider.oauth.service }
|
2013-07-14 17:03:02 -04:00
|
|
|
auth.provider.oauth.service.facebook:
|
2013-09-16 03:22:13 +02:00
|
|
|
class: phpbb\auth\provider\oauth\service\facebook
|
2013-07-14 17:26:09 -04:00
|
|
|
arguments:
|
|
|
|
- @config
|
2013-07-23 21:16:19 -04:00
|
|
|
- @request
|
2013-07-14 17:26:09 -04:00
|
|
|
tags:
|
2013-07-14 17:45:05 -04:00
|
|
|
- { name: auth.provider.oauth.service }
|
2013-07-18 12:24:11 -04:00
|
|
|
auth.provider.oauth.service.google:
|
2013-09-16 03:22:13 +02:00
|
|
|
class: phpbb\auth\provider\oauth\service\google
|
2013-07-14 17:26:09 -04:00
|
|
|
arguments:
|
|
|
|
- @config
|
2013-07-23 21:16:19 -04:00
|
|
|
- @request
|
2013-07-14 17:26:09 -04:00
|
|
|
tags:
|
2013-07-14 17:45:05 -04:00
|
|
|
- { name: auth.provider.oauth.service }
|