forked from eduvpn/vpn-user-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
88 lines (88 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"authors": [
{
"email": "[email protected]",
"name": "Fran\u00e7ois Kooman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"LC\\Portal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LC\\Portal\\Tests\\": "tests/"
}
},
"description": "VPN User Portal",
"license": "AGPL-3.0-or-later",
"name": "lc/vpn-user-portal",
"repositories": [
{
"type": "vcs",
"url": "https://git.tuxed.net/LC/php-openvpn-connection-manager"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-oauth2-server"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-otp-verifier"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-jwt"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-sqlite-migrate"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-saml-sp"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-secookie"
}
],
"require": {
"bacon/bacon-qr-code": "^1.0",
"ext-curl": "*",
"ext-date": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"ext-spl": "*",
"fkooman/jwt": "dev-master",
"fkooman/oauth2-server": "^5",
"fkooman/otp-verifier": "dev-master",
"fkooman/php-saml-sp": "dev-master",
"fkooman/secookie": "dev-devel",
"fkooman/sqlite-migrate": "^0",
"lc/openvpn-connection-manager": "^1",
"paragonie/constant_time_encoding": "^2",
"php": ">=7.2",
"psr/log": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7|^8"
},
"suggest": {
"ext-ldap": "Support LDAP user authentication",
"ext-radius": "Support RADIUS user authentication"
},
"support": {
"email": "[email protected]",
"source": "https://github.com/eduvpn/vpn-user-portal"
},
"type": "project"
}