forked from eduvpn/vpn-user-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.61 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
{
"authors": [
{
"email": "[email protected]",
"name": "Fran\u00e7ois Kooman",
"role": "Developer"
}
],
"autoload": {
"files": [
"src/sodium_compat.php"
],
"psr-4": {
"SURFnet\\VPN\\Portal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SURFnet\\VPN\\Portal\\Tests\\": "tests/"
}
},
"description": "VPN User Portal",
"license": "AGPL-3.0-or-later",
"name": "eduvpn/vpn-user-portal",
"repositories": [
{
"no-api": true,
"type": "vcs",
"url": "https://github.com/eduvpn/vpn-lib-common"
},
{
"type": "vcs",
"url": "https://git.tuxed.net/fkooman/php-oauth2-server"
}
],
"require": {
"bacon/bacon-qr-code": "^1.0",
"eduvpn/common": "^1",
"ext-date": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-spl": "*",
"fkooman/oauth2-client": "^7",
"fkooman/oauth2-server": "^3",
"fkooman/secookie": "^2",
"paragonie/constant_time_encoding": "^1|^2",
"paragonie/random_compat": "^1|^2",
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5|^6|^7"
},
"suggest": {
"ext-libsodium": "PHP < 7.2 sodium implementation",
"ext-sodium": "PHP >= 7.2 sodium implementation"
},
"support": {
"email": "[email protected]",
"source": "https://github.com/eduvpn/vpn-user-portal"
},
"type": "project"
}