I made a project hosted in a private Gitlab EE instance on my server with "type": "library"
, and in my application, require
d it as usual and also added a "repository" entry
{
"type": "vcs",
"url": "https://my.gitlab.install.com/repo-name/package-name.git"
}
Composer pulls the package in, but it also includes the .git
folder causing Git to see it as a subproject.
Am I missing something?