-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
26 lines (26 loc) · 1.1 KB
/
composer.json
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
{
"name": "sunnysideup/social_integration",
"type": "silverstripe-module",
"description": "This module allows users to easily let users sign up and login using facebook and twitter. After a user has signed up using this module, a OAuth token for that social service will be stored against the users account. This allows your application to call the facebook and twitter apis on behalf of the user and implement whatever interesting social integration features you want. The SelectFriendPage is an example of the type of functionality that can be easily implemented once you have access to the users OAuth tokens.",
"keywords": [
"Silverstripe-CMS",
"CMS",
"Silverstripe",
"social_integration"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nicolaas Francken",
"email": "[email protected]",
"role": "lead developer"
}
],
"require": {
"silverstripe/framework": "~2.4",
"silverstripe/cms": "~2.4"
},
"extra": {
"installer-name": "social_integrations"
}
}