-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPharCommand.php
42 lines (34 loc) · 1.4 KB
/
PharCommand.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
<?php
declare(strict_types=1);
namespace ManaPHP\Commands;
use FilesystemIterator;
use ManaPHP\AliasInterface;
use ManaPHP\Cli\Command;
use ManaPHP\Di\Attribute\Autowired;
use ManaPHP\Helper\LocalFS;
use Phar;
class PharCommand extends Command
{
#[Autowired] protected AliasInterface $alias;
/**
* create manacli.phar file
*/
public function manacliAction(): void
{
$this->alias->set('@phar', '@runtime/manacli_phar');
$pharFile = $this->alias->resolve('@root/manacli.phar');
$this->console->writeLn(sprintf('cleaning `%s` dir', $this->alias->resolve('@phar')));
LocalFS::dirReCreate('@phar');
$this->console->writeLn('copying manaphp framework files.');
LocalFS::dirCopy('@root/ManaPHP', '@phar/ManaPHP');
//LocalFS::dirCopy('@root/Application', '@phar/Application');
LocalFS::fileCopy('@root/manacli.php', '@phar/manacli.php');
$flags = FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::KEY_AS_FILENAME;
$phar = new Phar($pharFile, $flags, basename($pharFile));
$phar->buildFromDirectory($this->alias->resolve('@phar'));
$phar->setStub($phar::createDefaultStub('manacli.php'));
$this->console->writeLn('compressing files');
$phar->compressFiles(Phar::BZ2);
$this->console->writeLn(sprintf('`%s` created successfully', $this->alias->resolve($pharFile)));
}
}