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": ">=5.4" 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 }, 21 22 "require-dev": { 23 "phpunit/phpunit": "^4.8", 24 "mikey179/vfsStream": "^1.6", 25 "ext-zip": "*", 26 "ext-bz2": "*" 27 }, 28 29 "autoload": { 30 "psr-4": { 31 "splitbrain\\PHPArchive\\": "src" 32 } 33 }, 34 35 "autoload-dev": { 36 "psr-4": { 37 "splitbrain\\PHPArchive\\": "tests" 38 } 39 } 40} 41