如何解决 Laravel 安装包时出现 Guzzle 错误

jyo*_*tam -1 php laravel composer-php guzzle

尝试安装软件包但显示guzzle错误问题1,当前项目要求是

 "require": {
        "php": "^7.2",
        "fideloper/proxy": "^4.0",
        "guzzlehttp/guzzle": "^7.0",
        "guzzlehttp/psr7": "^1.6",
        "laravel/framework": "^6.2",
        "laravel/tinker": "^2.0",
        "php-http/curl-client": "^2.1"
    }, 

 Problem 1
    - Installation request for edujugon/laravel-google-ads ^1.2 -> satisfiable by edujugon/laravel-google-ads[1.2.0, 1.2.1, 1.2.10, 1.2.11, 1.2.12, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.2.7, 1.2.8, 1.2.9].
    - Can only install one of: guzzlehttp/guzzle[6.5.x-dev, 7.0.1].
    - Can only install one of: guzzlehttp/guzzle[7.0.1, 6.5.x-dev].
    - Can only install one of: guzzlehttp/guzzle[6.5.x-dev, 7.0.1].
    - Conclusion: install guzzlehttp/guzzle 6.5.x-dev
    - Installation request for guzzlehttp/guzzle (locked at 7.0.1, required as ^7.0) -> edujugon by guzzlehttp/guzzle[7.0.1].
Run Code Online (Sandbox Code Playgroud)

小智 5

您所需要做的就是允许 6.5

"guzzlehttp/guzzle": "^6.5|^7.0.1",