BookStack/scripts/compile.php
Dan Brown 6d055e6f72
Started playing with a seperate admin-cli
Just playing with libraries & phar-usage right now
2023-03-02 16:31:27 +00:00

52 lines
1.2 KiB
PHP

<?php
/**
* This file builds a phar archive to contain our CLI code.
* Attribution to https://blog.programster.org/creating-phar-files
* for the code in this file.
*/
try {
$pharFile = 'app.phar';
// clean up
if (file_exists($pharFile)) {
unlink($pharFile);
}
if (file_exists($pharFile . '.gz')) {
unlink($pharFile . '.gz');
}
// create phar
$phar = new Phar($pharFile);
// start buffering. Mandatory to modify stub to add shebang
$phar->startBuffering();
// Create the default stub from main.php entrypoint
$defaultStub = $phar->createDefaultStub('run');
// Add the rest of the apps files
$phar->addFile(__DIR__ . '/run', 'run');
$phar->buildFromDirectory(__DIR__, '/vendor(.*)/');
// Customize the stub to add the shebang
$stub = "#!/usr/bin/env php \n" . $defaultStub;
// Add the stub
$phar->setStub($stub);
$phar->stopBuffering();
// plus - compressing it into gzip
$phar->compressFiles(Phar::GZ);
# Make the file executable
chmod(__DIR__ . "/{$pharFile}", 0770);
echo "$pharFile successfully created" . PHP_EOL;
} catch (Exception $e) {
echo $e->getMessage();
}