Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Latest commit

 

History

History
58 lines (44 loc) · 1.13 KB

README.md

File metadata and controls

58 lines (44 loc) · 1.13 KB

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": {
        "neirda24/guzzle-bundle-header-forward-plugin": "^1.0"
    }
}
command line
$ composer require neirda24/guzzle-bundle-header-forward-plugin

Usage

Enable bundle

# app/AppKernel.php

new EightPoints\Bundle\GuzzleBundle\EightPointsGuzzleBundle([
    new Neirda24\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'