-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
{
"name": "dreamfactory/df-oidc",
"description": "OpenID Connect support for DreamFactory",
"keywords": [
"dreamfactory",
"api",
"rest",
"auth",
"oauth",
"openid",
"connect",
"authentication",
"authorization",
"user_info"
],
"homepage": "https://www.dreamfactory.com/",
"license": "proprietary",
"authors": [
{
"name": "Arif Islam",
"email": "[email protected]"
},
{
"name": "Lee Hicks",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/dreamfactorysoftware/df-oidc",
"issues": "https://github.com/dreamfactorysoftware/df-oidc/issues",
"wiki": "https://wiki.dreamfactory.com"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"dreamfactory/df-oauth": "~0.16",
"phpseclib/phpseclib": "3.0.*"
},
"autoload": {
"psr-4": {
"DreamFactory\\Core\\Oidc\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.5.x-dev"
},
"laravel": {
"providers": [
"DreamFactory\\Core\\Oidc\\ServiceProvider"
]
}
}
}