{ "name": "pablotron/zipstream", "description": "Dynamically generate streamed zip archives.", "homepage": "https://github.com/pablotron/zipstream-php", "license": "MIT", "authors": [{ "name": "Paul Duncan", "email": "zipstream@pablotron.org", "homepage": "https://pablotron.org/", "role": "developer" }], "require": { "php": "^7" }, "require-dev": { "phpunit/phpunit": "^7", "phan/phan": "^1.0" }, "autoload": { "psr-4": { "Pablotron\\ZipStream\\": "src/" } }, "autoload-dev": { "psr-4": { "Pablotron\\ZipStream\\Tests\\": "tests/" } }, "scripts": { "test-unit": [ "phpunit --bootstrap vendor/autoload.php tests" ], "test-xml": [ "phpunit --bootstrap vendor/autoload.php --log-junit test-results-$(date +%Y%m%d%H%M%S).xml tests" ], "test-static": [ "phan src/*php" ], "test": [ "@test-unit", "@test-static" ], "docs": [ "phpdoc -d src -t docs --template=responsive-twig --title=ZipStream" ] }, "scripts-descriptions": { "test": "Run all unit tests and the static analyzer.", "test-unit": "Run all unit tests.", "test-xml": "Run all unit tests and export the results as XML.", "test-phan": "Run the static analyzer.", "docs": "Generate the API documentation." } }