aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2018-09-03 09:53:44 -0400
committerPaul Duncan <pabs@pablotron.org>2018-09-03 09:53:44 -0400
commit7134bcf24c9e6a1b4c35f7c9ed5f3326e3be9e40 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /README
parent3a519a212a64a04f70fb7f3a8c61505d2dd35b66 (diff)
downloadzipstream-php-7134bcf24c9e6a1b4c35f7c9ed5f3326e3be9e40.tar.bz2
zipstream-php-7134bcf24c9e6a1b4c35f7c9ed5f3326e3be9e40.zip
remove old files
Diffstat (limited to 'README')
-rw-r--r--README42
1 files changed, 0 insertions, 42 deletions
diff --git a/README b/README
deleted file mode 100644
index 25eb42e..0000000
--- a/README
+++ /dev/null
@@ -1,42 +0,0 @@
-ZipStream 0.2.2 README
-======================
-
-Please see the file COPYING for licensing and warranty information. The
-latest version of this software is available at the following URL:
-
- http://pablotron.org/software/zipstream-php/
-
-Overview
-========
-A fast and simple streaming zip file downloader for PHP. Here's a
-simple example:
-
- # create a new zipstream object
- $zip = new ZipStream('example.zip');
-
- # create a file named 'hello.txt'
- $zip->add_file('some_image.jpg', 'This is the contents of hello.txt');
-
- # add a file named 'image.jpg' from a local file 'path/to/image.jpg'
- $zip->add_file_from_path('some_image.jpg', 'path/to/image.jpg');
-
- # finish the zip stream
- $zip->finish();
-
-You can also add comments, modify file timestamps, and customize (or
-disable) the HTTP headers. See the class file for details. There are a
-couple of additional examples in the initial release announcement at the
-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>
-http://pablotron.org/