xref: /dokuwiki/vendor/splitbrain/php-archive/composer.json (revision 25957e773bfab367ebe639f75e6413f30b60dfff)
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    "require-dev": {
18        "phpunit/phpunit": "4.5.*"
19    },
20
21    "autoload": {
22        "psr-4": {
23            "splitbrain\\PHPArchive\\": "src"
24        }
25    }
26}
27