For example, here is a portion of my composer.json
"repositories": [
{
"type": "git",
"url": "ssh://git@gitlab.domain.com/project/package.git"
}
],
Now I'm working on the project locally, so I already have package
in another folder.
Do I really need to push the changes for package
to the remote repo, then pull it in my project repo? Or is there a way to tell composer that this repo is also available locally?
EDIT: Basically, how do I say "use this local repo if it exists, otherwise use this remote repo"?