diff options
-rw-r--r-- | composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..73d2df7 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "pablotron/zipstream", + "description": "Dynamically generate streamed zip archives.", + "license": "MIT", + + "authors": [{ + "name": "Paul Duncan", + "email": "zipstream@pablotron.org", + "homepage": "https://pablotron.org/", + "role": "developer" + }], + + "require": { + "php": "^7" + }, + + "require-dev": { + "phpunit/phpunit": "^7", + "phpdocumentor/phpdocumentor": "2.*" + }, + + "autoload": { + "Pablotron\\ZipStream\\": "src/" + }, + + "autoload-dev": { + "Pablotron\\ZipStream\\Tests\\": "tests/" + } +} |