forked from eduvpn/vpn-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 891 Bytes
/
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
{
"authors": [
{
"email": "[email protected]",
"name": "Fran\u00e7ois Kooman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"SURFnet\\VPN\\Node\\": "src/",
"SURFnet\\VPN\\Node\\Tests\\": "tests/"
}
},
"description": "OpenVPN node controller",
"license": "AGPL-3.0",
"name": "eduvpn/vpn-server-node",
"repositories": [
{
"no-api": true,
"type": "vcs",
"url": "https://github.com/eduvpn/vpn-lib-common"
}
],
"require": {
"eduvpn/common": "^1",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-spl": "*",
"php": ">=5.4.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
}
}