This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
66 lines (66 loc) · 1.53 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
{
"authors": [
{
"email": "fkooman@tuxed.net",
"name": "François Kooman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"LC\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LC\\Server\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "5.4.8"
}
},
"description": "Server API for Let's Connect! and eduVPN",
"license": "AGPL-3.0-or-later",
"name": "lc/vpn-server-api",
"repositories": [
{
"type": "path",
"url": "../vpn-lib-common"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-otp-verifier"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-sqlite-migrate"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/put"
}
],
"require": {
"ext-date": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-spl": "*",
"ext-sqlite3": "*",
"fkooman/otp-verifier": "^0.4",
"fkooman/sqlite-migrate": "^0",
"lc/common": "v2.x-dev",
"php": ">=5.4"
},
"require-dev": {
"fkooman/put": "^0"
},
"support": {
"email": "eduvpn-support@lists.geant.org",
"source": "https://git.sr.ht/~fkooman/vpn-server-api"
},
"type": "project"
}