encore-labs/guzzle-bundle-header-forward-plugin

Guzzle plugin that allow you to forward headers from your current request into the the guzzle one automatically. Forked to support Symfony 4

v3.0.1 2020-03-24 09:07 UTC

This package is not auto-updated.

Last update: 2024-04-17 06:24:03 UTC


README

# Guzzle Bundle Header Forwarding Plugin

This plugin integrates a way to forward headers from the current symfony request into the cURL.

Requirements

Installation

Using composer:

composer.json
{
    "require": {
        "encore-labs/guzzle-bundle-header-forward-plugin": "^1.0"
    }
}
command line
$ composer require encore-labs/guzzle-bundle-header-forward-plugin

Usage

Enable bundle

# app/AppKernel.php

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

Basic configuration

# 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'