PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` #!/usr/bin/env php * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ // -------------------------------------------------------------------------- // // In order to be able to execute this script to create a Phar archive of Predis, // the Phar module must be loaded and the "phar.readonly" directive php.ini must // be set to "off". You can change the values in the $options array to customize // the creation of the Phar archive to better suit your needs. // -------------------------------------------------------------------------- // $options = array( 'name' => 'predis', 'project_path' => __DIR__ . '/../lib/', 'compression' => Phar::NONE, 'append_version' => true, ); function getPharFilename($options) { $filename = $options['name']; // NOTE: do not consider "append_version" with Phar compression do to a bug in // Phar::compress() when renaming phar archives containing dots in their name. if ($options['append_version'] && $options['compression'] === Phar::NONE) { $versionFile = @fopen(__DIR__ . '/../VERSION', 'r'); if ($versionFile === false) { throw new Exception("Could not locate the VERSION file."); } $version = trim(fgets($versionFile)); fclose($versionFile); $filename .= "_$version"; } return "$filename.phar"; } function getPharStub($options) { return <<compress($options['compression']); $phar->setStub(getPharStub($options)); $phar->buildFromDirectory($options['project_path']);