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