506 B
506 B
Composer Knowledge base
upgrade packages
use newer github tokens
Edit the composer authentication configuration file ~/.composer/auth.json.
nano ~/.composer/auth.json
Then replace the following.
{
"github-oauth": {
"github.com": "ghp_[YOUR-PERSONAL-TOKEN]"
}
}
With this (basic auth):
{
"http-basic": {
"github.com": {
"username": "[YOUR-GITHUB-USERNAME]",
"password": "ghp_[YOUR-PERSONAL-TOKEN]"
}
}
}