This plugin integrates a way to forward headers from the current symfony request into the cURL.
- PHP 7.0 or above
- Guzzle Bundle
Using composer:
{
"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'