You are here

public static function Composer::removeTimeout in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Composer/Composer.php \Drupal\Core\Composer\Composer::removeTimeout()

Removes Composer's timeout so that scripts can run indefinitely.

File

core/lib/Drupal/Core/Composer/Composer.php, line 246

Class

Composer
Provides static functions for composer script events.

Namespace

Drupal\Core\Composer

Code

public static function removeTimeout() {
  ProcessExecutor::setTimeout(0);
}