-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
49 lines (43 loc) · 1.11 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
{
"name": "splitbrain/php-archive",
"description": "Pure-PHP implementation to read and write TAR and ZIP archives",
"keywords": ["zip", "tar", "archive", "unpack", "extract", "unzip"],
"authors": [
{
"name": "Andreas Gohr",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.0"
},
"suggest": {
"ext-iconv": "Used for proper filename encode handling",
"ext-mbstring": "Can be used alternatively for handling filename encoding",
"ext-bz2": "For bz2 compression",
"ext-zlib": "For zlib compression"
},
"require-dev": {
"phpunit/phpunit": "^8",
"mikey179/vfsstream": "^1.6",
"ext-zip": "*",
"ext-bz2": "*"
},
"autoload": {
"psr-4": {
"splitbrain\\PHPArchive\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"splitbrain\\PHPArchive\\": "tests"
}
},
"funding": [
{
"url": "https://github.com/sponsors/splitbrain",
"type": "github"
}
]
}