mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-01-17 20:58:22 +01:00
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "nelexa/zip",
|
|
"description": "Zip files CRUD. Open, create, update, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
|
|
"type": "library",
|
|
"keywords": [
|
|
"zip",
|
|
"unzip",
|
|
"archive",
|
|
"extract",
|
|
"winzip",
|
|
"zipalign"
|
|
],
|
|
"require-dev": {
|
|
"phpunit/phpunit": "4.8",
|
|
"codeclimate/php-test-reporter": "^0.4.4"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Ne-Lexa",
|
|
"email": "alexey@nelexa.ru",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"php-64bit": "^5.5 || ^7.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpZip\\": "src/PhpZip"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"PhpZip\\": "tests/PhpZip"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt",
|
|
"ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
|
|
"ext-bz2": "Needed to support BZIP2 compression"
|
|
}
|
|
}
|