1
0
mirror of https://github.com/splitbrain/php-archive.git synced 2025-01-17 13:38:26 +01:00
php-archive/composer.json

41 lines
920 B
JSON
Raw Normal View History

2015-02-20 10:50:44 +01:00
{
2015-02-20 15:43:24 +01:00
"name": "splitbrain/php-archive",
2015-02-20 10:50:44 +01:00
"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"
}
],
2015-02-20 15:47:52 +01:00
"license": "MIT",
2015-02-20 10:50:44 +01:00
"require": {
"php": ">=5.4"
2015-02-20 10:50:44 +01:00
},
"suggest": {
"ext-iconv": "Used for proper filename encode handling",
"ext-mbstring": "Can be used alternatively for handling filename encoding"
},
2015-02-20 10:50:44 +01:00
"require-dev": {
"phpunit/phpunit": "^8",
"mikey179/vfsstream": "^1.6",
2018-02-04 19:01:02 +08:00
"ext-zip": "*",
"ext-bz2": "*"
2015-02-20 10:50:44 +01:00
},
"autoload": {
"psr-4": {
"splitbrain\\PHPArchive\\": "src"
}
2018-02-04 19:01:02 +08:00
},
"autoload-dev": {
"psr-4": {
"splitbrain\\PHPArchive\\": "tests"
}
2015-02-20 10:50:44 +01:00
}
}