├── .gitignore ├── Docs ├── APPNOTE-6.3.2.TXT ├── APPNOTE-6.3.4.TXT ├── Links.txt ├── ZIP_file_format.htm └── extrafld.txt ├── README.md ├── REVISION.TXT ├── composer.json ├── legacy ├── README.txt ├── Zip.ErrorCatch1.php ├── Zip.Example1.php ├── Zip.Example2.php ├── Zip.Example3.php ├── ZipStream.Example1.php ├── ZipStream.Example1s.php ├── ZipStream.Example2.php ├── ZipStream.Example2b.php ├── bootstrap.php └── composer.json ├── src └── Zip │ ├── Core │ ├── AbstractException.php │ ├── AbstractZipArchive.php │ └── ZipUtils.php │ ├── Exception │ ├── BufferNotEmpty.php │ ├── HeaderPositionError.php │ ├── HeadersSent.php │ ├── IncompatiblePhpVersion.php │ ├── InvalidPhpConfiguration.php │ └── LengthMismatch.php │ ├── File │ └── Zip.php │ ├── Listener │ └── ZipArchiveListener.php │ └── Stream │ └── ZipStream.php └── tests ├── bootstrap.php ├── composer.json ├── functional └── ZipArchiveWebTest.php ├── index.php ├── openCmd.bat ├── phpunit.xml ├── run functional tests.bat ├── run unit tests.bat └── unit ├── ZipArchiveFileTest.php └── ZipArchiveStreamTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/APPNOTE-6.3.2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/Docs/APPNOTE-6.3.2.TXT -------------------------------------------------------------------------------- /Docs/APPNOTE-6.3.4.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/Docs/APPNOTE-6.3.4.TXT -------------------------------------------------------------------------------- /Docs/Links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/Docs/Links.txt -------------------------------------------------------------------------------- /Docs/ZIP_file_format.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/Docs/ZIP_file_format.htm -------------------------------------------------------------------------------- /Docs/extrafld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/Docs/extrafld.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/README.md -------------------------------------------------------------------------------- /REVISION.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/REVISION.TXT -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/composer.json -------------------------------------------------------------------------------- /legacy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/README.txt -------------------------------------------------------------------------------- /legacy/Zip.ErrorCatch1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/Zip.ErrorCatch1.php -------------------------------------------------------------------------------- /legacy/Zip.Example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/Zip.Example1.php -------------------------------------------------------------------------------- /legacy/Zip.Example2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/Zip.Example2.php -------------------------------------------------------------------------------- /legacy/Zip.Example3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/Zip.Example3.php -------------------------------------------------------------------------------- /legacy/ZipStream.Example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/ZipStream.Example1.php -------------------------------------------------------------------------------- /legacy/ZipStream.Example1s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/ZipStream.Example1s.php -------------------------------------------------------------------------------- /legacy/ZipStream.Example2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/ZipStream.Example2.php -------------------------------------------------------------------------------- /legacy/ZipStream.Example2b.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/ZipStream.Example2b.php -------------------------------------------------------------------------------- /legacy/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/bootstrap.php -------------------------------------------------------------------------------- /legacy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/legacy/composer.json -------------------------------------------------------------------------------- /src/Zip/Core/AbstractException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Core/AbstractException.php -------------------------------------------------------------------------------- /src/Zip/Core/AbstractZipArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Core/AbstractZipArchive.php -------------------------------------------------------------------------------- /src/Zip/Core/ZipUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Core/ZipUtils.php -------------------------------------------------------------------------------- /src/Zip/Exception/BufferNotEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/BufferNotEmpty.php -------------------------------------------------------------------------------- /src/Zip/Exception/HeaderPositionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/HeaderPositionError.php -------------------------------------------------------------------------------- /src/Zip/Exception/HeadersSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/HeadersSent.php -------------------------------------------------------------------------------- /src/Zip/Exception/IncompatiblePhpVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/IncompatiblePhpVersion.php -------------------------------------------------------------------------------- /src/Zip/Exception/InvalidPhpConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/InvalidPhpConfiguration.php -------------------------------------------------------------------------------- /src/Zip/Exception/LengthMismatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Exception/LengthMismatch.php -------------------------------------------------------------------------------- /src/Zip/File/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/File/Zip.php -------------------------------------------------------------------------------- /src/Zip/Listener/ZipArchiveListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Listener/ZipArchiveListener.php -------------------------------------------------------------------------------- /src/Zip/Stream/ZipStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/src/Zip/Stream/ZipStream.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/composer.json -------------------------------------------------------------------------------- /tests/functional/ZipArchiveWebTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/functional/ZipArchiveWebTest.php -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/index.php -------------------------------------------------------------------------------- /tests/openCmd.bat: -------------------------------------------------------------------------------- 1 | cd /d "%cd%" 2 | start cmd.exe 3 | -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/run functional tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/run functional tests.bat -------------------------------------------------------------------------------- /tests/run unit tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/run unit tests.bat -------------------------------------------------------------------------------- /tests/unit/ZipArchiveFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/unit/ZipArchiveFileTest.php -------------------------------------------------------------------------------- /tests/unit/ZipArchiveStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grandt/PHPZip/HEAD/tests/unit/ZipArchiveStreamTest.php --------------------------------------------------------------------------------