Answer the question
In order to leave comments, you need to log in
How to fix errors when connecting a private repository in composer?
Hello.
I'm trying to connect a private repository via composer.
"require": {
"isolutions/storage-bundle" : "dev-develop"
},
"repositories" : [
{
"type" : "git",
"url" : "[email protected]:isolutions/storage-bundle.git"
}
],
Answer the question
In order to leave comments, you need to log in
Thanks MintTea
You should have
specified the correct name, which is specified in the composer.json of the loaded package, i.e. I have had :
"require": {
"isolutions/storage-bundle" : "dev-develop"
}
"require": {
"storage-bundle" : "dev-develop"
}
"name" : "storage-bundle"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question