-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
44 lines (44 loc) · 1.26 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
{
"name": "raulfraile/distill",
"description": "Smart compressed files extractor",
"keywords": [
"compression", "extractor", "zip", "gzip", "phar", "rar",
"tar.gz", "xz", "tar.xz", "bzip2", "bzip", "7zip", "cab",
"epub", "unzip", "bz2", "tgz", "strategy", "archive"
],
"license": "MIT",
"authors": [
{
"name": "Raul Fraile",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Distill\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Distill\\Tests\\": "tests/" }
},
"require": {
"php": ">=5.4.0",
"pimple/pimple": "~3.0",
"symfony/filesystem": "~2.4|^3.0",
"symfony/process": "~2.4|^3.0"
},
"require-dev": {
"raulfraile/ladybug": "~1.0",
"mockery/mockery": "0.9.1",
"symfony/finder": "~2.4|^3.0"
},
"suggest": {
"ext-zip": "Allows to uncompress zip files using ZipArchive",
"ext-rar": "Allows to uncompress rar files using RarArchive"
},
"archive": {
"exclude": ["/tests", "/examples", "/.travis.yml", "CONTRIBUTING.md"]
},
"support": {
"issues": "https://github.com/raulfraile/distill/issues"
},
"minimum-stability": "stable"
}