У меня есть репозиторий с библиотекой. Он может быть успешно клонирован.
$ git clone file:////remote/repo/library
$ cd library
$ composer validate
./composer.json is valid, but with a few warnings
Но похоже, что этот репозиторий не может быть использован через включение композитора.
...
"repositories": [
{
"type": "git",
"url": "file:////remote/repo/library"
}]
...
Попытка установить
$ composer install -vvv
...
Loading composer repositories with package information
Executing command (//remote/repo/library): git show-ref --tags
Executing command (//remote/repo/library): git branch --no-color --no-abbrev -v
Executing command (//remote/repo/library): git branch --no-color
Executing command (//remote/repo/library): git show "master":composer.json
[Composer\Repository\InvalidRepositoryException]
No valid composer.json was found in any branch or tag of
file:////remote/repo/library, could not load a package from it.
...
Как использовать удаленный репозиторий в окнах с композитором?