No Description https://symfony.com/components/Process

Joseph Bielawski be3cac4d05 [Process] Cleanup tests & prevent assertion that kills randomly Travis-CI 11 years ago
Exception 8582fc24d1 fixes a bug when output/error output contains a % character 12 years ago
Tests be3cac4d05 [Process] Cleanup tests & prevent assertion that kills randomly Travis-CI 11 years ago
CHANGELOG.md 718655f4bc [Process] added CHANGELOG 12 years ago
ExecutableFinder.php fa405bdcf3 [Process] Fix docblocks, remove `return` from `PhpProcess#start()` as parent returns nothing, cleaned up `ExecutableFinder` 12 years ago
LICENSE d498d5d489 updated license year 12 years ago
PhpExecutableFinder.php abbb6c9a4f [Process] Add default xampp path to the list of possible paths to check 12 years ago
PhpProcess.php fa405bdcf3 [Process] Fix docblocks, remove `return` from `PhpProcess#start()` as parent returns nothing, cleaned up `ExecutableFinder` 12 years ago
Process.php 3b1b54a614 [Process] Fix #5594 : `termsig` must be used instead of `stopsig` in exceptions when a process is signaled 11 years ago
ProcessBuilder.php f54332e630 Fix Process timeout 11 years ago
README.md 3247811ab5 [Components] Tests/Autoloading fixes 12 years ago
composer.json 058ae5038a Removed useless branch alias for dev-master in composer.json 12 years ago
phpunit.xml.dist 3247811ab5 [Components] Tests/Autoloading fixes 12 years ago

README.md

Process Component

Process executes commands in sub-processes.

In this example, we run a simple directory listing and get the result back:

use Symfony\Component\Process\Process;

$process = new Process('ls -lsa');
$process->setTimeout(3600);
$process->run();
if (!$process->isSuccessful()) {
    throw new RuntimeException($process->getErrorOutput());
}

print $process->getOutput();

You can think that this is easy to achieve with plain PHP but it's not especially if you want to take care of the subtle differences between the different platforms.

And if you want to be able to get some feedback in real-time, just pass an anonymous function to the run() method and you will get the output buffer as it becomes available:

use Symfony\Component\Process\Process;

$process = new Process('ls -lsa');
$process->run(function ($type, $buffer) {
    if ('err' === $type) {
        echo 'ERR > '.$buffer;
    } else {
        echo 'OUT > '.$buffer;
    }
});

That's great if you want to execute a long running command (like rsync-ing files to a remote server) and give feedback to the user in real-time.

Resources

You can run the unit tests with the following command:

phpunit