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 38
/
Copy pathcomposer.json
81 lines (81 loc) · 1.94 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
{
"authors": [
{
"email": "[email protected]",
"name": "François Kooman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Vpn\\Portal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vpn\\Portal\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4.0"
}
},
"description": "VPN Portal",
"license": "AGPL-3.0-or-later",
"name": "vpn/portal",
"repositories": [
{
"packagist.org": false
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-oauth2-server"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-secookie"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/php-saml-sp"
},
{
"type": "vcs",
"url": "https://git.sr.ht/~fkooman/put"
}
],
"require": {
"ext-curl": "*",
"ext-date": "*",
"ext-filter": "*",
"ext-gmp": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-sodium": "*",
"ext-spl": "*",
"fkooman/oauth2-server": "^7.8",
"fkooman/secookie": "^6.2",
"php": ">=7.4"
},
"require-dev": {
"fkooman/put": "^0",
"fkooman/saml-sp": "^2"
},
"suggest": {
"ext-ldap": "Support LDAP Authentication",
"ext-pdo_mysql": "Support MySQL/MariaDB",
"ext-pdo_pgsql": "Support PostgreSQL",
"ext-radius": "Support RADIUS Authentication"
},
"support": {
"email": "[email protected]",
"source": "https://git.sr.ht/~fkooman/vpn-user-portal"
},
"type": "project"
}