I have multiple apps which share some repos.
In my local dev environment I have symlinked those repos via
{
"repositories" : [
{
"type" : "path",
"url" : "../../selion/importbundle"
}
]
}
to my apps such that I can test repo changes instantly on all apps.
I run composer update locally push the app changes to a git repo and just install them on the server. but server side this is kind of annoying because
- I need to update the repos and the apps
- I need to update all apps
Is it possible to use path repos locally and vcs repos serverside?