From 9bd2173e4625dcb7d6f9118e397dc3cd3929ca10 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 2 May 2016 06:53:13 +0200 Subject: php-owncloud-tarstreamer: 0.1.0 --- composer.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } +} -- cgit