I tried composer install and got the following error. Anyone know what it means?
[UnexpectedValueException]
Could not parse version constraint Needed: Invalid version string "Needed"install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-plugins] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-progress] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--ignore-platform-reqs] [--] []...
All my composer.json has in it is this:
{
"require" : {
"facebook/php-sdk-v4" : "4.0.*",
"league/oauth2-client": "Needed for Gmail's XOAUTH2 authentication system"
}
}
"league/oauth2-client": "Needed for Gmail's XOAUTH2 authentication system"
.. this is the culprit , you should have"league/oauth2-client" : "1.10"
– adelowo