-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·46 lines (46 loc) · 1.11 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "tharangakothalawala/sso",
"description": "This is a library which can provision new accounts and to authenticate users utilizing third party vendor connections.",
"keywords": [
"sso",
"signup",
"signin",
"register",
"login",
"provision"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tharanga Kothalawala",
"email": "tharanga.kothalawala@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3",
"ext-curl": "*",
"ext-json": "*",
"google/apiclient": "^2.0@dev",
"facebook/graph-sdk": "^5.4",
"abraham/twitteroauth": "0.9.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8 || ~6.0",
"mockery/mockery": "^0.9 || ^1.0@dev"
},
"autoload": {
"psr-4": {
"TSK\\SSO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TSK\\SSO\\": "tests/"
}
},
"suggest": {
"stripe/stripe-php": "Allows using the Stripe Connection"
}
}