-
Notifications
You must be signed in to change notification settings - Fork 2
/
stub.php
52 lines (50 loc) · 1.48 KB
/
stub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env php
<?php
/**
* If your package does special stuff in phar format, use this file. Remove if
* no phar format is ever generated
* More information: http://pear.php.net/manual/en/pyrus.commands.package.php#pyrus.commands.package.stub
*/
if (version_compare(phpversion(), '5.3.1', '<')) {
if (substr(phpversion(), 0, 5) != '5.3.1') {
// this small hack is because of running RCs of 5.3.1
echo "EPUBParser requires PHP 5.3.1 or newer.
";
exit -1;
}
}
foreach (array('phar', 'spl', 'pcre', 'simplexml') as $ext) {
if (!extension_loaded($ext)) {
echo 'Extension ', $ext, " is required
";
exit -1;
}
}
try {
Phar::mapPhar();
} catch (Exception $e) {
echo "Cannot process EPUBParser phar:
";
echo $e->getMessage(), "
";
exit -1;
}
function EPUBParser_autoload($class)
{
$class = str_replace(array('_', '\\'), '/', $class);
if (file_exists('phar://' . __FILE__ . '/EPUBParser-0.4.0/php/' . $class . '.php')) {
include 'phar://' . __FILE__ . '/EPUBParser-0.4.0/php/' . $class . '.php';
}
}
spl_autoload_register("EPUBParser_autoload");
$phar = new Phar(__FILE__);
$sig = $phar->getSignature();
define('EPUBParser_SIG', $sig['hash']);
define('EPUBParser_SIGTYPE', $sig['hash_type']);
// your package-specific stuff here, for instance, here is what Pyrus does:
/**
* $frontend = new \PEAR2\Pyrus\ScriptFrontend\Commands;
* @array_shift($_SERVER['argv']);
* $frontend->run($_SERVER['argv']);
*/
__HALT_COMPILER();