xref: /dokuwiki/vendor/splitbrain/php-archive/composer.json (revision 66ad52870159c5dadf412ecd1e8aa53a6dbbe0e7)
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.3.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    },
21
22    "require-dev": {
23        "phpunit/phpunit": "4.5.*"
24    },
25
26    "autoload": {
27        "psr-4": {
28            "splitbrain\\PHPArchive\\": "src"
29        }
30    }
31}
32