PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Asbjorn Grandt   Zip Stream   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Version 2.0 for this package. The entire structure have been reworked, and it is now using namespace, meaning that PHP 5.3 is now required as a minimum. See the examples in the legacy folder to see how you can easily migrate to the new structure. Most notable new function added is appendZip, to merge the content of an existing Zip file into the current one without re-compression, using the PHP Zip Merge package, also available here on PHPClasses.
Class: Zip Stream
Create ZIP archives for large number of files
Author: By
Last change: Update of composer.json
Date: 2 months ago
Size: 1,104 bytes
 

Contents

Class file image Download
{ "name": "phpzip/phpzip", "type": "library", "description": "Package to create and stream archives of compressed files in ZIP format with PHP 5.3+", "keywords": ["phpzip", "zip", "pkzip", "archive", "compressed", "compression", "stream"], "homepage": "https://github.com/Grandt/PHPZip", "license": "LGPL-2.1", "version": "2.0.8", "authors": [ { "name": "A. Grandt", "email": "php@grandt.com", "homepage": "http://grandt.com", "role": "Developer" }, { "name": "Greg Kappatos", "homepage": "http://websiteconnect.com.au", "role": "Developer" }, { "name": "Adam Schmalhofer", "email": "Adam.Schmalhofer@gmx.de", "role": "Developer" } ], "require": { "grandt/binstring": ">=1.0.0", "grandt/relativepath": ">=1.0.2", "grandt/phpzipmerge": ">=1.0.4", "php": ">=5.3.0" }, "autoload": { "psr-4": { "PHPZip\\Zip\\": "src/Zip" } } }