Created
March 24, 2017 03:12
-
-
Save overcome/8b56a9196a5633e89716deec1db1b8d7 to your computer and use it in GitHub Desktop.
[typo3][composer][config] Config token in composer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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