diff options
Diffstat (limited to 'zipstream.php')
-rw-r--r-- | zipstream.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zipstream.php b/zipstream.php index 4f6531a..5f0e663 100644 --- a/zipstream.php +++ b/zipstream.php @@ -33,6 +33,10 @@ # ZipStream - Streamed, dynamically generated zip archives. # by Paul Duncan <pabs@pablotron.org> # +# Requirements: +# +# * PHP version 5.1.2 or newer. +# # Usage: # # Streaming zip archives is a simple, three-step process: @@ -75,7 +79,7 @@ # $zip->finish(); # class ZipStream { - const VERSION = '0.1.2'; + const VERSION = '0.2.0'; var $opt = array(), $files = array(), |