mirror of
https://github.com/splitbrain/php-archive.git
synced 2025-01-17 05:28:25 +01:00
d53bf2ed77
* test on github not travis * run phpunit8 (tests only on 7.2+) * use github action to build api docs
41 lines
920 B
JSON
41 lines
920 B
JSON
{
|
|
"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": "andi@splitbrain.org"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
|
|
"require": {
|
|
"php": ">=5.4"
|
|
},
|
|
|
|
"suggest": {
|
|
"ext-iconv": "Used for proper filename encode handling",
|
|
"ext-mbstring": "Can be used alternatively for handling filename encoding"
|
|
},
|
|
|
|
"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"
|
|
}
|
|
}
|
|
}
|