Add script 'get-openssl-version.sh'.
This commit is contained in:
42
snippets/dokuwiki-2023-04-04/vendor/splitbrain/php-archive/composer.json
vendored
Normal file
42
snippets/dokuwiki-2023-04-04/vendor/splitbrain/php-archive/composer.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "splitbrain/php-archive",
|
||||
"description": "Pure-PHP implementation to read and write TAR and ZIP archives",
|
||||
"keywords": ["zip", "tar", "archive", "unpack", "extract", "unzip"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Andreas Gohr",
|
||||
"email": "andi@splitbrain.org"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
|
||||
"require": {
|
||||
"php": ">=7.0"
|
||||
},
|
||||
|
||||
"suggest": {
|
||||
"ext-iconv": "Used for proper filename encode handling",
|
||||
"ext-mbstring": "Can be used alternatively for handling filename encoding",
|
||||
"ext-bz2": "For bz2 compression",
|
||||
"ext-zlib": "For zlib compression"
|
||||
},
|
||||
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8",
|
||||
"mikey179/vfsstream": "^1.6",
|
||||
"ext-zip": "*",
|
||||
"ext-bz2": "*"
|
||||
},
|
||||
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"splitbrain\\PHPArchive\\": "src"
|
||||
}
|
||||
},
|
||||
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"splitbrain\\PHPArchive\\": "tests"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user