Laravel Process
No security coverage
Integrate the Laravel Processes with Drupal
use Drupal\laravel_process\Service\Process;
use Illuminate\Process\Pipe;
$result = Process::run('ls -la');
echo $result->output();
echo $result->errorOutput();
$result = Process::pipe(function (Pipe $pipe) {
$pipe->command('cat example.txt');
$pipe->command('grep -i "laravel"');
});
if ($result->successful()) {
// ...
}
Depends on
Dependencies of the latest stable release
No dependencies recorded for this project.
Required by
Tracked projects that depend on this one
No tracked projects depend on this one yet.
Activity
Releases
| Version | Type | Core | Notes | Release date | |
|---|---|---|---|---|---|
| 10.0.1-beta1 | Pre-release | Add laravel process and ECA action | Nov 15, 2024 |