Get a list of paths to remove for the given package.
string $package: The package name.
string[] Array of paths to remove, relative to the package.
public function getPathsForPackage($package) { $package = strtolower($package); $paths = $this->getAllCleanupPaths(); return $paths[$package] ?? []; }