neirda24/guzzle-bundle-header-forward-plugin

此包已废弃,不再维护。未建议替代包。

Guzzle 插件,允许您将当前请求的头部自动转发到 Guzzle 请求。

2.0.0 2020-02-13 17:10 UTC

This package is not auto-updated.

Last update: 2023-05-05 08:44:32 UTC


README

此插件集成了一种将当前 symfony 请求的头部转发到 cURL 的方式。

要求

安装

使用 composer

composer.json
{
    "require": {
        "neirda24/guzzle-bundle-header-forward-plugin": "^1.0"
    }
}
命令行
$ composer require neirda24/guzzle-bundle-header-forward-plugin

使用方法

启用插件

# app/AppKernel.php

new EightPoints\Bundle\GuzzleBundle\EightPointsGuzzleBundle([
    new Neirda24\Bundle\GuzzleBundleHeaderForwardPlugin\GuzzleBundleHeaderForwardPlugin(),
])

基本配置

# app/config/config.yml

eight_points_guzzle:
    clients:
        api_payment:
            base_url: "http://api.domain.tld"

            # define headers, options

            # plugin settings
            plugin:
                header_forward:
                    enabled: true
                    headers:
                        - 'Accept-Language'