-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.56 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
56
57
58
59
{
"name": "triangle/oauth",
"description": "Triangle OAuth Plugin - это мощный плагин для OAuth-аутентификации, поддерживающий множество популярных провайдеров, таких как Google, Facebook, Twitter и Apple.",
"type": "library",
"keywords": [
"oauth",
"openid",
"authentication",
"authorization",
"social",
"api",
"google",
"facebook",
"twitter",
"apple",
"localzet",
"library",
"OAuth2",
"identity",
"security",
"login"
],
"homepage": "https://docs.localzet.com/triangle/oauth",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Ivan Zorin",
"email": "creator@localzet.com",
"homepage": "https://www.localzet.com",
"role": "Developer"
}
],
"support": {
"email": "support@localzet.com",
"issues": "https://github.com/Triangle-org/OAuth/issues",
"source": "https://github.com/Triangle-org/OAuth"
},
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"localzet/http": "^2.0"
},
"require-dev": {
"triangle/http": "^1.0"
},
"suggest": {
"ext-libxml": "Требуется для провайдера Steam",
"ext-simplexml": "Требуется для провайдера Steam",
"localzet/jwt": "Требуется для провайдера Apple",
"phpseclib/phpseclib": "Требуется для провайдера Apple"
},
"autoload": {
"psr-4": {
"Triangle\\": "src"
}
}
}