forked from eduvpn/vpn-user-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 1.96 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
{
"authors": [
{
"email": "[email protected]",
"name": "François Kooman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"LC\\Portal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LC\\Portal\\Tests\\": "tests/"
}
},
"description": "User and admin portal for Let's Connect! and eduVPN",
"license": "AGPL-3.0-or-later",
"name": "lc/vpn-user-portal",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "../vpn-lib-common"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-oauth2-server"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-jwt"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-sqlite-migrate"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-saml-sp"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-secookie"
}
],
"require": {
"ext-curl": "*",
"ext-date": "*",
"ext-hash": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-spl": "*",
"ext-sqlite3": "*",
"fkooman/jwt": "^1",
"fkooman/oauth2-server": "^6",
"fkooman/secookie": "^5",
"fkooman/sqlite-migrate": "^0",
"lc/common": "v2.x-dev",
"paragonie/constant_time_encoding": "^1.0.3|^2.2.0",
"paragonie/random_compat": "^1|^2",
"paragonie/sodium_compat": "^1",
"php": ">=5.4.8"
},
"require-dev": {
"ext-json": "*",
"fkooman/saml-sp": "^1",
"friendsofphp/php-cs-fixer": "^2"
},
"support": {
"email": "[email protected]",
"source": "https://git.sr.ht/~fkooman/vpn-user-portal"
},
"type": "project"
}