I would like to know how to add permanently credential to install private packages hosted by SATIS with access restriction through composer.
Private packages are hosted by SATIS and have HTTP BASIC AUTH access restrictions.
I ve added them in composer.json like this :
"require": {
"vendor/privatepackage": "^1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://myprivatepackages.io"
}
],
When i execute php composer.phar install
i would like to not have to enter each time the needed credentials.