1{ 2 "name": "splitbrain/php-archive", 3 "description": "Pure-PHP implementation to read and write TAR and ZIP archives", 4 "keywords": ["zip", "tar", "archive", "unpack", "extract", "unzip"], 5 "authors": [ 6 { 7 "name": "Andreas Gohr", 8 "email": "andi@splitbrain.org" 9 } 10 ], 11 "license": "MIT", 12 13 "require": { 14 "php": ">=7.0" 15 }, 16 17 "suggest": { 18 "ext-iconv": "Used for proper filename encode handling", 19 "ext-mbstring": "Can be used alternatively for handling filename encoding", 20 "ext-bz2": "For bz2 compression", 21 "ext-zlib": "For zlib compression" 22 }, 23 24 "require-dev": { 25 "phpunit/phpunit": "^8", 26 "mikey179/vfsstream": "^1.6", 27 "ext-zip": "*", 28 "ext-bz2": "*" 29 }, 30 31 "autoload": { 32 "psr-4": { 33 "splitbrain\\PHPArchive\\": "src" 34 } 35 }, 36 37 "autoload-dev": { 38 "psr-4": { 39 "splitbrain\\PHPArchive\\": "tests" 40 } 41 } 42} 43