summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpabs <pabs@pablotron.org>2009-01-29 15:36:03 -0500
committerpabs <pabs@pablotron.org>2009-01-29 15:36:03 -0500
commitcf40446dfb8469f295bbb4147128a5451ec2b3b4 (patch)
tree8fbab3dc3beee4e30b743a10c2fe32e5774c00a4
parent1bd4195503875e6f87db6a92fbb7ad2803c18171 (diff)
downloadzipstream-php-cf40446dfb8469f295bbb4147128a5451ec2b3b4.tar.bz2
zipstream-php-cf40446dfb8469f295bbb4147128a5451ec2b3b4.zip
update version to 0.2.0 and add php version requirements to documentation
-rw-r--r--README8
-rw-r--r--zipstream.php6
2 files changed, 12 insertions, 2 deletions
diff --git a/README b/README
index 4285d11..a16f5d3 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-ZipStream 0.1.2 README
+ZipStream 0.2.0 README
======================
Please see the file COPYING for licensing and warranty information. The
@@ -27,6 +27,12 @@ following URL:
http://pablotron.org/?cid=1535
+Requirements
+============
+
+ * PHP version 5.1.2 or newer (specifically, the hash_init and
+ hash_file functions).
+
About the Author
================
Paul Duncan <pabs@pablotron.org>
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(),