This command:
composer create-project symfony/skeleton --repository='{"type": "path", "url": "~/Code/symfony-skeleton"}' -s dev test-skeleton
Leads to
- Installing symfony/skeleton (7.2.x-dev): Symlinking from /home/[...]/Code/symfony-skeleton
"Symlinking" is clearly not desired.
I can fix this by adding , "options": {"symlink": false} to the repo entry but shouldn't this be the default when using create-project?
Nothing critical either :)