From 6905e3a7aeaba38b7a813d15f74621cd13d35a66 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 15 Feb 2012 18:21:17 +0100 Subject: [PATCH] Disable gzip compression of the phar --- src/Composer/Compiler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Composer/Compiler.php b/src/Composer/Compiler.php index 4898fd795..c21b66248 100644 --- a/src/Composer/Compiler.php +++ b/src/Composer/Compiler.php @@ -79,7 +79,8 @@ class Compiler $phar->stopBuffering(); - $phar->compressFiles(\Phar::GZ); + // disabled for interoperability with systems without gzip ext + // $phar->compressFiles(\Phar::GZ); $this->addFile($phar, new \SplFileInfo(__DIR__.'/../../LICENSE'), false);