Added minification and manifest generation (-n)

This commit is contained in:
2017-01-10 01:34:08 +01:00
parent 00ebb6ff95
commit dd2bb032dd
2 changed files with 66 additions and 4 deletions

View File

@ -9,11 +9,12 @@ class Application
private function parseCommandLine()
{
$opts = "h";
$long = [ 'help' ];
$opts = "hn";
$long = [ 'help', 'new' ];
$parsed = getopt($opts, $long);
$config = [
'init' => false,
'help' => false,
'manifest' => getcwd()."/makephar.sdl",
'output' => null,
@ -25,6 +26,10 @@ class Application
case 'help':
$config['help'] = true;
break;
case 'n':
case 'new':
$config['init'] = true;
break;
}
$this->config = (object)$config;
@ -34,6 +39,7 @@ class Application
{
printf("Usage: makephar [opts]\n");
printf("Options: -h,--help Show this help\n");
printf(" -n,--new Create a new configuration file\n");
}
public function run()
@ -44,6 +50,42 @@ class Application
$this->printHelp();
return;
}
if ($this->config->init) {
if (!file_exists("composer.json")) {
log_error("No composer.json in current directory");
return 1;
}
$proj = json_decode(file_get_contents("composer.json"));
$proj_name = basename(getcwd()).".phar";
$proj_files = [];
$proj_dirs = [];
if (!empty($proj->autoload)) {
foreach ((array)$proj->autoload as $type=>$loaders) {
if ($type == 'files') {
$proj_files = array_merge($proj_files, $loaders);
} else {
foreach ($loaders as $ns=>$path) {
$dir = rtrim($path," /");
if (!in_array($dir,$proj_dirs)) {
$proj_dirs[] = $dir;
}
}
}
}
printf("phar \"%s\" {\n", $proj_name);
printf(" include {\n");
foreach ($proj_files as $file)
printf(" file \"%s\";\n", $file);
foreach ($proj_dirs as $dir)
printf(" dir \"%s\";\n", $dir);
printf(" dir \"vendor\";\n");
printf(" }\n");
printf(" // stub \"src/path-to-stub.php\";\n");
printf("}\n");
}
return;
}
$this->buildManifest();
}