Add all suggestions from a package.
public function addSuggestionsFromPackage(PackageInterface $package) : SuggestedPackagesReporter { $source = $package->getPrettyName(); foreach ($package->getSuggests() as $target => $reason) { $this->addPackage($source, $target, $reason); } return $this; }