summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-05-02 06:53:13 +0200
committerRemi Collet <fedora@famillecollet.com>2016-05-02 06:53:13 +0200
commit9bd2173e4625dcb7d6f9118e397dc3cd3929ca10 (patch)
tree7e5145b568a89d85485fd764827a358561ee88ff /composer.json
parentf7e7fdaa40bc8e335694afe4d9a84c3c26709484 (diff)
php-owncloud-tarstreamer: 0.1.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2e26538
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,32 @@
+{
+ "name": "owncloud/tarstreamer",
+ "type": "library",
+ "description": "A library for dynamically streaming dynamic tar files without the need to have the complete file stored on the server.",
+ "keywords": [
+ "tar",
+ "archive",
+ "stream",
+ "php"
+ ],
+ "homepage": "https://github.com/owncloud/TarStreamer",
+ "license": "MIT",
+ "require": {
+ "php": ">=5.3.8"
+ },
+ "autoload": {
+ "psr-4": {
+ "ownCloud\\TarStreamer\\": "src/"
+ }
+ },
+ "archive": {
+ "exclude": [
+ "test",
+ "tests"
+ ]
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8",
+ "pear/pear-core-minimal": "v1.10.0alpha2",
+ "pear/archive_tar": "~1.4"
+ }
+}