composer安装laravel-socialite出现版本问题

在使用 composer 命令:composer require laravel/socialite 进行安装发生错误。
版本:laravel5.6
出现错误:```php
Your requirements could not be resolved to an installable set of packages.

Problem 1

    - laravel/socialite[v5.2.0, ..., 5.x-dev] require illuminate/http ^6.0|^7.0|^8.0 -> found illuminate/http[v6.0.0, ..., 6.x-dev, v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev] but these were not loaded, likely because it conflicts with another require.
    - Root composer.json requires laravel/socialite ^5.2 -> satisfiable by laravel/socialite[v5.2.0, v5.2.1, 5.x-dev].


Installation failed, reverting ./composer.json and ./composer.lock to their original content.

```
错误原因:laravel/socialite [v5.2.0, …, 5.x-dev] 依赖的版本要 laravel6.0 以上,导致安装失败。
解决方法:更新 laravel 版本或者安装低版本的 socialite

本作品采用《CC 协议》,转载必须注明作者和本文链接
《L02 从零构建论坛系统》
以构建论坛项目 LaraBBS 为线索,展开对 Laravel 框架的全面学习。应用程序架构思路贴近 Laravel 框架的设计哲学。
《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。