-
Hi, I'm confused about Symfony Flex aliases (I'm updating an old Symfony application to use Flex). Is there a place where I can see a list of all Flex recipes and their aliases, as well as the history of all flex recipes/aliases? For example, the docs at https://symfony.com/doc/current/quick_tour/flex_recipes.html say you can see a full list of recipes at https://github.com/symfony/recipes/blob/flex/main/RECIPES.md. However, the same docs show that "twig" is a recipe, e.g. "composer require twig", but I don't see "twig" listed as an alias anywhere in https://github.com/symfony/recipes/blob/flex/main/RECIPES.md |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello, You seem to know about https://github.com/symfony/recipes so this is your answer: each folder contains a recipe and you can find their aliases under their Note that aliases only matter when running |
Beta Was this translation helpful? Give feedback.
Hello,
You seem to know about https://github.com/symfony/recipes so this is your answer: each folder contains a recipe and you can find their aliases under their
manifest.json
'saliases
key.twig
is an alias of the twig-pack as you can see here; not sure why it isn't listed in https://github.com/symfony/recipes/blob/flex/main/RECIPES.md though; maybe you could open an issue.Note that aliases only matter when running
composer require
, so you probably don't need to worry about them when upgrading an app.