symfony / skeleton

The Symfony skeleton
MIT License
598 stars 128 forks source link

Question: Where can I find the code that is copied into the target when creating a project based on this skeleton? #190

Closed localheinz closed 4 years ago

localheinz commented 4 years ago

When running

 $ composer create-project symfony/skeleton

a whole lot of code (other than the contents of the vendor/ directory) is copied into the target directory.

Where can I find that code on GitHub?

xabbuh commented 4 years ago

I guess what you are looking for are the recipes that are applied by Symfony Flex (see also https://symfony.com/doc/current/setup.html#installing-packages).

localheinz commented 4 years ago

Thank you, @xabbuh!