-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.14 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
{
"name": "ocs/ocs-fileserver",
"description": "Simple file server for hosting small or big files",
"type": "project",
"minimum-stability": "stable",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "pling GmbH",
"email": "[email protected]"
}
],
"homepage": "https://www.opendesktop.org/",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-sqlite3": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-zlib": "*",
"aws/aws-sdk-php": "^3",
"laminas/laminas-inputfilter": "^2",
"james-heinrich/getid3": "^1.9",
"laminas/laminas-db": "^2"
},
"autoload": {
"classmap": ["api_application/", "library/"],
"psr-0": {
"Flooer_": "library/",
"RedisCache": "library/",
"JWT": "library/",
"EPubReader": "library/"
},
"psr-4": {
"Ocs\\": "library/Ocs/",
"Zynthbox\\": "library/Zynthbox/"
}
}
}