We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef295ff commit 5caf1f5Copy full SHA for 5caf1f5
src/GenerateRecipesReadmeCommand.php
@@ -57,7 +57,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
57
$contentLines[] = '| --- | --- |'.($hasAliases ? ' --- |' : '');
58
foreach ($data['recipes'] as $package => $versions) {
59
$latestVersion = array_pop($versions);
60
- $line = sprintf('| [%s](https://packagist.org/packages/%s) | [%s](%s/%s) |', $package, $package, $latestVersion, $package, $latestVersion);
+ $line = sprintf('| [%s](https://packagist.org/packages/%s) | [%s](https://github.com/symfony/recipes/tree/main/%s/%s) |', $package, $package, $latestVersion, $package, $latestVersion);
61
if ($hasAliases) {
62
$styledAliases = array_map(function ($alias) {
63
return sprintf('`%s`', $alias);
0 commit comments