You are here

protected static function Composer::findPackageKey in Zircon Profile 8

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

Find the array key for a given package name with a case-insensitive search.

Parameters

string $package_name: The package name from composer. This is always already lower case.

Return value

NULL|string The string key, or NULL if none was found.

1 call to Composer::findPackageKey()
Composer::vendorTestCodeCleanup in core/lib/Drupal/Core/Composer/Composer.php
Remove possibly problematic test files from vendored projects.

File

core/lib/Drupal/Core/Composer/Composer.php, line 181
Contains \Drupal\Core\Composer\Composer.

Class

Composer
Provides static functions for composer script events.

Namespace

Drupal\Core\Composer

Code

protected static function findPackageKey($package_name) {
  $package_key = NULL;

  // In most cases the package name is already used as the array key.
  if (isset(static::$packageToCleanup[$package_name])) {
    $package_key = $package_name;
  }
  else {

    // Handle any mismatch in case between the package name and array key.
    // For example, the array key 'mikey179/vfsStream' needs to be found
    // when composer returns a package name of 'mikey179/vfsstream'.
    foreach (static::$packageToCleanup as $key => $dirs) {
      if (strtolower($key) === $package_name) {
        $package_key = $key;
        break;
      }
    }
  }
  return $package_key;
}