-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (28 loc) · 810 Bytes
/
composer.json
File metadata and controls
29 lines (28 loc) · 810 Bytes
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
{
"name": "mitmelon/compress",
"description": "Advanced file compresser which reduces and encrypt large files to smaller chunks by saving them as binary for later use.",
"keywords": ["archive","zip","compress","compress files", "advance file compresser", "save memory", "file compresser", "file", "encryption", "encrypt file", "remove meta"],
"homepage": "https://manomite.net",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Manomite Limited",
"email": "manomitehq@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": ">=5.6.0",
"php-curl-class/php-curl-class": "^9.18"
},
"autoload": {
"psr-4": {
"Compress\\":
[
"Compress/"
]
}
}
}