From 00e0b27025ad228edb2e2e1103eb65378ab25a9c Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Fri, 20 Apr 2018 19:24:16 +0700 Subject: [PATCH] Add compression for Phar archives --- bin/build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/build b/bin/build index b685aae0..7b463762 100755 --- a/bin/build +++ b/bin/build @@ -66,8 +66,7 @@ __HALT_COMPILER(); STUB; $phar->setStub($stub); -// Bug #53467. Phar cannot compress large archives. https://bugs.php.net/bug.php?id=53467 -// $phar->compressFiles(Phar::GZ); +$phar->compressFiles(Phar::GZ); $phar->stopBuffering(); unset($phar);