-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCommandTool.php
77 lines (56 loc) · 1.87 KB
/
CommandTool.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
namespace ZhenMu\Support\Utils;
class CommandTool
{
protected $executableFinder;
protected $defaultExtraDirs = [
'/usr/bin/',
'/usr/local/bin/',
];
public function __construct()
{
$this->executableFinder = new \Symfony\Component\Process\ExecutableFinder();
if (function_exists('base_path')) {
$this->defaultExtraDirs = array_merge($this->defaultExtraDirs, [base_path()]);
}
}
public static function make()
{
return new static();
}
public static function getRealpath($path)
{
return realpath($path);
}
public static function formatCommand($command)
{
if (is_string($command)) {
$command = explode(' ', $command);
}
return $command;
}
public function createProcess(array $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60)
{
return tap(new \Symfony\Component\Process\Process(...func_get_args()));
}
public static function findBinary(string $name, array $extraDirs = [])
{
$instance = static::make();
$extraDirs = array_merge($instance->defaultExtraDirs, $extraDirs);
$extraDirs = array_map(fn ($dir) => rtrim($dir, '/'), $extraDirs);
return $instance->executableFinder->find($name, null, $extraDirs);
}
public static function getPhpProcess(array $argument)
{
$instance = new static();
$php = $instance->findBinary('php');
return $instance->createProcess([$php, ...$argument]);
}
public static function getComposerProcess(array $argument)
{
$instance = new static();
$php = $instance->findBinary('php');
$composer = $instance->findBinary('composer');
return $instance->createProcess([$php, $composer, ...$argument]);
}
}