1--TEST--
2Phar::getSupportedCompression() (bz2 and zlib)
3--EXTENSIONS--
4phar
5bz2
6zlib
7--INI--
8phar.require_hash=0
9--FILE--
10<?php
11var_dump(Phar::getSupportedCompression());
12?>
13--EXPECT--
14array(2) {
15  [0]=>
16  string(2) "GZ"
17  [1]=>
18  string(5) "BZIP2"
19}
20