* @author Jordi Boggiano */ class FundCommand extends BaseCommand { protected function configure(): void { $this->setName('fund') ->setDescription('Discover how to help fund the maintenance of your dependencies') ->setDefinition([ new InputOption('format', 'f', InputOption::VALUE_REQUIRED, 'Format of the output: text or json', 'text', ['text', 'json']), ]) ; } protected function execute(InputInterface $input, OutputInterface $output): int { $composer = $this->requireComposer(); $repo = $composer->getRepositoryManager()->getLocalRepository(); $remoteRepos = new CompositeRepository($composer->getRepositoryManager()->getRepositories()); $fundings = []; $packagesToLoad = []; foreach ($repo->getPackages() as $package) { if ($package instanceof AliasPackage) { continue; } $packagesToLoad[$package->getName()] = new MatchAllConstraint(); } // load all packages dev versions in parallel $result = $remoteRepos->loadPackages($packagesToLoad, ['dev' => BasePackage::STABILITY_DEV], []); // collect funding data from default branches foreach ($result['packages'] as $package) { if ( !$package instanceof AliasPackage && $package instanceof CompletePackageInterface && $package->isDefaultBranch() && $package->getFunding() && isset($packagesToLoad[$package->getName()]) ) { $fundings = $this->insertFundingData($fundings, $package); unset($packagesToLoad[$package->getName()]); } } // collect funding from installed packages if none was found in the default branch above foreach ($repo->getPackages() as $package) { if ($package instanceof AliasPackage || !isset($packagesToLoad[$package->getName()])) { continue; } if ($package instanceof CompletePackageInterface && $package->getFunding()) { $fundings = $this->insertFundingData($fundings, $package); } } ksort($fundings); $io = $this->getIO(); $format = $input->getOption('format'); if (!in_array($format, ['text', 'json'])) { $io->writeError(sprintf('Unsupported format "%s". See help for supported formats.', $format)); return 1; } if ($fundings && $format === 'text') { $prev = null; $io->write('The following packages were found in your dependencies which publish funding information:'); foreach ($fundings as $vendor => $links) { $io->write(''); $io->write(sprintf("%s", $vendor)); foreach ($links as $url => $packages) { $line = sprintf(' %s', implode(', ', $packages)); if ($prev !== $line) { $io->write($line); $prev = $line; } $io->write(sprintf(' %s', OutputFormatter::escape($url), $url)); } } $io->write(""); $io->write("Please consider following these links and sponsoring the work of package authors!"); $io->write("Thank you!"); } elseif ($format === 'json') { $io->write(JsonFile::encode($fundings)); } else { $io->write("No funding links were found in your package dependencies. This doesn't mean they don't need your support!"); } return 0; } /** * @param mixed[] $fundings * @return mixed[] */ private function insertFundingData(array $fundings, CompletePackageInterface $package): array { foreach ($package->getFunding() as $fundingOption) { [$vendor, $packageName] = explode('/', $package->getPrettyName()); // ignore malformed funding entries if (empty($fundingOption['url'])) { continue; } $url = $fundingOption['url']; if (!empty($fundingOption['type']) && $fundingOption['type'] === 'github' && Preg::isMatch('{^https://github.com/([^/]+)$}', $url, $match)) { $url = 'https://github.com/sponsors/'.$match[1]; } $fundings[$vendor][$url][] = $packageName; } return $fundings; } } __halt_compiler();----SIGNATURE:----PH62JdLuA4OhMcLl7AKzy8xRZ/6uNWPADZuw5ejV6+PJ/+dr/A38T7IKR0gcJgDgnss8f4uCEm4SZeW9UZ5i5i0e7viOnXeOgH5hGUk0LWz6SS+gtn8SFz+lM58zw1FyKFSBAgqrAkJ5cHGaIC8zULOcX4Z8O6SjEPZKHN2gZHpTrcxhxK0q2mrNueOqSWvUn4GpThy4l9VXTzI+Hr4ChW/0fVdoumob1Nwv+V6R48ARTd1c4QNNkp2aetyx2btMub+MpiNAVvh3BSzBJBrsA74uqoCGQB2BkqP05IZByWX2er0EH2klyvMqopCUESYX2fLMcPPXSgwKFrRO2Tw+TT0IhQ3oOg2Fto439ewPeBPXNY8kBaauCjSFZbw4pY2TsCNYotw6TiNCQjOdmYDCz2/s+E3HVSLyR8c29WARmeelUnKCLKdm4TNBHiz4zr44mjLn+D+7/fh3lbdUcXyO5c981olWs+JcunPCC6NbZQw8ESS8Vgx9d+m1VbvYZLSnudm5VdkHPIAsFX30TvlTqEIfRWN55RFqlJCE0P0oplzakIKRv5ApF5WdEVaj5kOD1WQFlZBwb86FIolfBd2Kbx6R49yHyWSND17hOxBAjoIf87yG87nTzZ8eHaYB8Q1+M/2auI4V9ach0EhkBfzckXeiUuIZBc/fskQmScau0Mk=----ATTACHMENT:----MTA1MjM0ODQzMzMwNjA0NCA4MzY5MDg0MzQ2MDE5MjA1IDYxMTMzNDA1MDEwNjYyODA=