Laravel Multi Process

Submitted by karam-mustafa - 2 years ago

Laravel package making you able to perform several process instead of executing them through one process Installation

$proceses = \SOS\MultiProcess\Facades\MultiProcessFacade::setTasks(
        "php artisan make:model modelName",
        "php artisan make:model ControllerName",
        // and you can define unlimited commands
    );
    $proceses->start();