mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
23786784ef
Summary: Adds the Balanced PHP API to externals/. Ref T2787. Test Plan: Used in next diff. Reviewers: btrahan, chad Reviewed By: chad CC: aran, aurelijus Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D5764
51 lines
1.3 KiB
PHP
Executable file
51 lines
1.3 KiB
PHP
Executable file
#!/usr/bin/php
|
|
<?php
|
|
|
|
/**
|
|
* Build the whole library into a single file
|
|
* as an easy drop in solution as opposed to
|
|
* relying on autoloader. Sometimes we just
|
|
* want to hack with an API as a one off thing.
|
|
* Httpful should make this easy.
|
|
*/
|
|
|
|
function exit_unless($condition, $msg = null) {
|
|
if ($condition)
|
|
return;
|
|
echo "[FAIL]\n$msg\n";
|
|
exit(1);
|
|
}
|
|
|
|
// Create the Httpful Phar
|
|
echo "Building Phar... ";
|
|
$base_dir = dirname(__FILE__);
|
|
$source_dir = $base_dir . '/src/Httpful/';
|
|
$phar_path = $base_dir . '/downloads/httpful.phar';
|
|
$phar = new Phar($phar_path, 0, 'httpful.phar');
|
|
$stub = <<<HEREDOC
|
|
<?php
|
|
// Phar Stub File
|
|
Phar::mapPhar('httpful.phar');
|
|
include('phar://httpful.phar/Httpful/Bootstrap.php');
|
|
\Httpful\Bootstrap::pharInit();
|
|
|
|
__HALT_COMPILER();
|
|
HEREDOC;
|
|
try {
|
|
$phar->setStub($stub);
|
|
} catch(Exception $e) {
|
|
$phar = false;
|
|
}
|
|
exit_unless($phar, "Unable to create a phar. Make certain you have phar.readonly=0 set in your ini file.");
|
|
$phar->buildFromDirectory(dirname($source_dir));
|
|
echo "[ OK ]\n";
|
|
|
|
|
|
|
|
// Add it to git!
|
|
echo "Adding httpful.phar to the repo... ";
|
|
$return_code = 0;
|
|
passthru("git add $phar_path", $return_code);
|
|
exit_unless($return_code === 0, "Unable to add download files to git.");
|
|
echo "[ OK ]\n";
|
|
echo "\nBuild completed sucessfully.\n\n";
|