You are here

public function Config::getPathsForPackage in Drupal 8

Same name and namespace in other branches
  1. 9 composer/Plugin/VendorHardening/Config.php \Drupal\Composer\Plugin\VendorHardening\Config::getPathsForPackage()
  2. 10 composer/Plugin/VendorHardening/Config.php \Drupal\Composer\Plugin\VendorHardening\Config::getPathsForPackage()

Get a list of paths to remove for the given package.

Parameters

string $package: The package name.

Return value

string[] Array of paths to remove, relative to the package.

File

composer/Plugin/VendorHardening/Config.php, line 168

Class

Config
Determine configuration.

Namespace

Drupal\Composer\Plugin\VendorHardening

Code

public function getPathsForPackage($package) {
  $package = strtolower($package);
  $paths = $this
    ->getAllCleanupPaths();
  return isset($paths[$package]) ? $paths[$package] : [];
}