| /template/strap/vendor/symfony/process/ |
| H A D | CHANGELOG.md | 7 * added `Process::setOptions()` to set `Process` specific options 14 * added `Process::getStartTime()` to retrieve the start time of the process as float 19 * removed `Process::inheritEnvironmentVariables()` 21 …* `Process` must be instantiated with a command array, use `Process::fromShellCommandline()` when … 22 * removed `Process::setCommandLine()` 27 * deprecated `Process::inheritEnvironmentVariables()`: env variables are always inherited. 28 * added `Process::getLastOutputTime()` method 33 * added the `Process::fromShellCommandline()` to run commands in a shell wrapper 34 * deprecated passing a command as string when creating a `Process` instance 35 * deprecated the `Process::setCommandline()` and the `PhpProcess::setPhpBinary()` methods [all …]
|
| H A D | PhpProcess.php | 12 namespace Symfony\Component\Process; 14 use Symfony\Component\Process\Exception\LogicException; 15 use Symfony\Component\Process\Exception\RuntimeException; 26 class PhpProcess extends Process
|
| H A D | ProcessUtils.php | 12 namespace Symfony\Component\Process; 14 use Symfony\Component\Process\Exception\InvalidArgumentException; 54 if ($input instanceof Process) {
|
| H A D | README.md | 1 Process Component 4 The Process component executes commands in sub-processes. 9 The Process component for Symfony 5.4/6.0 is [backed][1] by [SensioLabs][2].
|
| H A D | InputStream.php | 12 namespace Symfony\Component\Process; 14 use Symfony\Component\Process\Exception\RuntimeException;
|
| H A D | Process.php | 12 namespace Symfony\Component\Process; 14 use Symfony\Component\Process\Exception\InvalidArgumentException; 15 use Symfony\Component\Process\Exception\LogicException; 16 use Symfony\Component\Process\Exception\ProcessFailedException; 17 use Symfony\Component\Process\Exception\ProcessSignaledException; 18 use Symfony\Component\Process\Exception\ProcessTimedOutException; 19 use Symfony\Component\Process\Exception\RuntimeException; 20 use Symfony\Component\Process\Pipes\PipesInterface; 21 use Symfony\Component\Process\Pipes\UnixPipes; 22 use Symfony\Component\Process\Pipes\WindowsPipes; [all …]
|
| H A D | ExecutableFinder.php | 12 namespace Symfony\Component\Process;
|
| H A D | PhpExecutableFinder.php | 12 namespace Symfony\Component\Process;
|
| /template/strap/vendor/symfony/process/Pipes/ |
| H A D | WindowsPipes.php | 12 namespace Symfony\Component\Process\Pipes; 14 use Symfony\Component\Process\Exception\RuntimeException; 15 use Symfony\Component\Process\Process; alias 33 Process::STDOUT => 0, 34 Process::STDERR => 0, 48 Process::STDOUT => Process::OUT, 49 Process::STDERR => Process::ERR, 150 @stream_select($r, $w, $e, 0, Process::TIMEOUT_PRECISION * 1E6); 152 usleep((int) (Process::TIMEOUT_PRECISION * 1E6));
|
| H A D | UnixPipes.php | 12 namespace Symfony\Component\Process\Pipes; 14 use Symfony\Component\Process\Process; alias 76 if ($this->ptyMode && Process::isPtySupported()) { 113 …if (($r || $w) && false === stream_select($r, $w, $e, 0, $blocking ? Process::TIMEOUT_PRECISION * …
|
| H A D | AbstractPipes.php | 12 namespace Symfony\Component\Process\Pipes; 14 use Symfony\Component\Process\Exception\InvalidArgumentException;
|
| H A D | PipesInterface.php | 12 namespace Symfony\Component\Process\Pipes;
|
| /template/strap/vendor/symfony/process/Exception/ |
| H A D | ProcessSignaledException.php | 12 namespace Symfony\Component\Process\Exception; 14 use Symfony\Component\Process\Process; alias 25 public function __construct(Process $process) 32 public function getProcess(): Process
|
| H A D | ProcessFailedException.php | 12 namespace Symfony\Component\Process\Exception; 14 use Symfony\Component\Process\Process; alias 25 public function __construct(Process $process)
|
| H A D | ProcessTimedOutException.php | 12 namespace Symfony\Component\Process\Exception; 14 use Symfony\Component\Process\Process; alias 29 public function __construct(Process $process, int $timeoutType)
|
| H A D | ExceptionInterface.php | 12 namespace Symfony\Component\Process\Exception;
|
| H A D | RuntimeException.php | 12 namespace Symfony\Component\Process\Exception;
|
| H A D | InvalidArgumentException.php | 12 namespace Symfony\Component\Process\Exception;
|
| H A D | LogicException.php | 12 namespace Symfony\Component\Process\Exception;
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/ |
| H A D | DriverService.php | 7 use Symfony\Component\Process\Process; alias 8 use Symfony\Component\Process\ProcessBuilder; 37 * @var Process|null 146 * @param Process $process 164 * @return Process 182 return new Process($commandLine, null, $this->environment);
|
| /template/strap/vendor/php-webdriver/webdriver/ |
| H A D | CHANGELOG.md | 177 - `Symfony\Process` is used to start local WebDriver processes (when browsers are run directly, wit…
|
| /template/strap/ |
| H A D | composer.lock | 706 "Symfony\\Component\\Process\\": ""
|