summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json47
1 files changed, 47 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..85992b9
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,47 @@
+{
+ "name": "deepdiver/zipstreamer",
+ "type": "library",
+ "description": "Stream zip files without i/o overhead",
+ "keywords": ["zip", "stream"],
+ "homepage": "https://github.com/DeepDiver1975/PHPZipStreamer",
+ "license": "GPL-3.0+",
+ "version": "1.1.1",
+ "authors": [ {
+ "name": "Nicolai Ehemann",
+ "email": "en@enlightened.de",
+ "role": "Author/Maintainer"
+ },{
+ "name": "André Rothe",
+ "email": "arothe@zks.uni-leipzig.de",
+ "role": "Contributor"
+ },{
+ "name": "Lukas Reschke",
+ "email": "lukas@owncloud.com",
+ "role": "Contributor"
+ },{
+ "name": "Thomas Müller",
+ "email": "thomas.mueller@tmit.eu",
+ "role": "Contributor"
+ },{
+ "name": "Roeland Jago Douma",
+ "email": "roeland@famdouma.nl",
+ "role": "Contributor"
+ }
+ ],
+ "repositories": [ {
+ "type": "vcs",
+ "url": "https://github.com/DeepDiver1975/PHPZipStreamer"
+ }
+ ],
+ "require": {
+ "php": ">=5.6.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "ZipStreamer\\": "src/"
+ }
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7"
+ }
+}