You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
$phar = new Phar('seo.phar', 0, 'seo.phar');
|
|
$phar->buildFromDirectory(dirname(__FILE__) . '/src');
|
|
$phar->setStub(file_get_contents(__DIR__ . '/stub.php'));
|
|
$phar->setMetadata([
|
|
'buildtime' => time(),
|
|
]);
|
|
$phar->compressFiles(Phar::GZ);
|