Skip to content

Instantly share code, notes, and snippets.

@overcome
Created March 24, 2017 03:12
Show Gist options
  • Save overcome/8b56a9196a5633e89716deec1db1b8d7 to your computer and use it in GitHub Desktop.
Save overcome/8b56a9196a5633e89716deec1db1b8d7 to your computer and use it in GitHub Desktop.
[typo3][composer][config] Config token in composer.json
You can solve it by creating a new github token to authenticate your composer requests.
You can do this two ways:
By defining your token globally:
composer config --global github-oauth.github.com <TOKEN>
Or by defining your token in a project composer.json:
{
"config": {
"github-oauth": {
"github.com": "<TOKEN>"
}
}
}
More information about the problem and how to generate github tokens:
Composer troubleshooting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment