fitness-web/doc/composer.md
2022-12-27 14:42:55 +01:00

506 B

Composer Knowledge base

upgrade packages

upgrade.txt

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]"
    }
  }
}