0

我最近对这个网络应用程序进行了相当大的更新,并且在大多数情况下它顺利进行了......直到应用程序尝试从登台/生产发送短信通知。

从 laravel 7.x 升级到 8.x 非常简单直接。同时我们也安装了 Laravel Horizo​​n。一切都按计划进行,并且在本地一切正常。

但是,当我们部署到登台/生产时,排队的 SMS 通知会失败,并出现以下异常:

ReflectionException:/home/forge/dev.example.com/releases/20210609194554/vendor/laravel/framework/src/Illuminate/Container/Container.php:836 中不存在类 Http\Adapter\Guzzle6\Client

查看堆栈跟踪,我们可以看到 Nexmo 是罪魁祸首:

#5 /home/forge/dev.example.com/releases/20210609194554/vendor/nexmo/laravel/src/NexmoServiceProvider.php(150): Illuminate\Foundation\Application->make()

然而,在我们的 composer.json 文件中,我们需要 Guzzle 7 具有以下内容:

"guzzlehttp/guzzle": "^7.3",

在这一点上再次值得一提的是,我在本地发送 SMS 没有问题,本地和暂存环境的主要区别在于,我在本地使用 Laravel Valet,而 Staging 使用 Laravel Envoyer。

到目前为止我已经尝试过:

  • 更改"guzzlehttp/guzzle": "^7.3""guzzlehttp/guzzle": "^6.5|^7.3"
  • 手动运行php artisan horizon:purgephp artisan horizon:terminate在部署挂钩中运行。
  • 在 forge 上重新启动 laravel Horizo​​n 守护进程。
  • php artisan queue:restart
  • 跑步composer dump-autoloadcomposer dump-autoload -o
  • 从 current/ 中删除 composer.lock 和 vendor/ 目录,然后运行composer install
  • 重新启动 PHP、Nginx,并最终重新启动整个服务器 :(

和更多...

任何帮助是极大的赞赏

更新如下:

完整的composer.json:

{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "type": "project",
    "require": {
        "php": ">=7.4.1",
        "arrilot/laravel-widgets": "^3.13",
        "barryvdh/laravel-snappy": "^0.4.6",
        "doctrine/dbal": "^2.10",
        "facade/ignition": "^2.3.6",
        "guzzlehttp/guzzle": "^7.3",
        "intervention/image": "^2.4",
        "laravel/framework": "^8.0",
        "laravel/helpers": "^1.3",
        "laravel/horizon": "^5.7",
        "laravel/nexmo-notification-channel": "^2.5.1",
        "laravel/passport": "^10.0",
        "laravel/slack-notification-channel": "^2.0",
        "laravel/telescope": "^4.0",
        "laravel/tinker": "^2.0",
        "laravel/ui": "^3.0",
        "league/csv": "^8.2",
        "league/flysystem-aws-s3-v3": "~1.0",
        "maatwebsite/excel": "^3.1",
        "milon/barcode": "^8.0.1",
        "nexmo/laravel": "^2.4.1",
        "nunomaduro/collision": "^5.0",
        "predis/predis": "^1.1",
        "pusher/pusher-php-server": "^4.1.1",
        "webpatser/laravel-uuid": "^3.0"
    },
    "require-dev": {
        "fzaninotto/faker": "~1.4",
        "mockery/mockery": "0.9.*",
        "phpunit/phpunit": "^9.0",
        "filp/whoops": "~2.0"
    },
    "autoload": {
        "classmap": [
            "database"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "scripts": {
        "post-root-package-install": [
            "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "php artisan key:generate"
        ],
        "post-install-cmd": [
            "Illuminate\\Foundation\\ComposerScripts::postInstall"
        ],
        "post-update-cmd": [
            "Illuminate\\Foundation\\ComposerScripts::postUpdate"
        ],
        "post-autoload-dump": [
            "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
            "@php artisan package:discover"
        ]
    },
    "config": {
        "preferred-install": "dist",
        "sort-packages": true
    }
}

此外,我的 nexmo 配置文件没有任何用于 http_client 的内容,也许这是我错过的升级步骤。因此,对于nexmo 的http_client,我的.env 文件中没有任何内容。我也将开始研究这个。

nexmo.php

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | API Credentials
    |--------------------------------------------------------------------------
    |
    | If you're using API credentials, change these settings. Get your
    | credentials from https://dashboard.nexmo.com | 'Settings'.
    |
    */

    'api_key'    => function_exists('env') ? env('NEXMO_KEY', '') : '',
    'api_secret' => function_exists('env') ? env('NEXMO_SECRET', '') : '',

    /*
    |--------------------------------------------------------------------------
    | Signature Secret
    |--------------------------------------------------------------------------
    |
    | If you're using a signature secret, use this section. This can be used
    | without an `api_secret` for some APIs, as well as with an `api_secret`
    | for all APIs.
    |
    */

    'signature_secret' => function_exists('env') ? env('NEXMO_SIGNATURE_SECRET', '') : '',

    /*
    |--------------------------------------------------------------------------
    | Private Key
    |--------------------------------------------------------------------------
    |
    | Private keys are used to generate JWTs for authentication. Generation is
    | handled by the library. JWTs are required for newer APIs, such as voice
    | and media
    |
    */

    'private_key' => function_exists('env') ? env('NEXMO_PRIVATE_KEY', '') : '',
    'application_id' => function_exists('env') ? env('NEXMO_APPLICATION_ID', '') : '',

    /*
    |----------------------------------------------------------------------------
    | Phone Numbers
    |----------------------------------------------------------------------------
    |
    | Phone numbers to be used by the application.
    */

    'number'    =>  env('NEXMO_NUMBER'),
    'batch'     =>  env('NEXMO_BATCH'),

];
4

1 回答 1

1

我看到NexmoServiceProvider正在尝试使用http_client配置中定义的,所以你能分享一下.env有什么用NEXMO_HTTP_CLIENT吗?我很确定你那里有问题,甚至没有定义。

这就是config/nexmo.php与该配置相关的定义:

'http_client' => function_exists('env') ? env('NEXMO_HTTP_CLIENT', '') : '',
于 2021-06-09T23:40:12.760 回答