neirda24 / guzzle-bundle-header-disable-cache-plugin
Guzzle 插件,允许您使用专用头部禁用缓存插件。
2.0.0
2020-02-13 17:09 UTC
Requires
- php: ^7.0
- eightpoints/guzzle-bundle: ~7.0
- gregurco/guzzle-bundle-cache-plugin: ^1.0
- guzzlehttp/guzzle: ^6.0
- kevinrob/guzzle-cache-middleware: ~3.0
- symfony/config: ~2.3|~3.0|~4.0
- symfony/dependency-injection: ~2.3|~3.0|~4.0
- symfony/expression-language: ~2.3|~3.0|~4.0
- symfony/http-kernel: ~2.3|~3.0|~4.0
Requires (Dev)
- phpunit/phpunit: ~6.1
This package is not auto-updated.
Last update: 2024-09-20 15:35:17 UTC
README
此插件通过头部集成禁用缓存插件的方法。
要求
- PHP 7.0 或更高版本
- Guzzle Bundle
安装
使用 composer
composer.json
{ "require": { "neirda24/guzzle-bundle-header-disable-cache-plugin": "^1.0" } }
命令行
$ composer require neirda24/guzzle-bundle-header-disable-cache-plugin
使用方法
启用包
# app/AppKernel.php new EightPoints\Bundle\GuzzleBundle\EightPointsGuzzleBundle([ new Neirda24\Bundle\GuzzleBundleHeaderDisableCachePlugin\GuzzleBundleHeaderDisableCachePlugin(), ])
基本配置
# app/config/config.yml eight_points_guzzle: clients: api_payment: base_url: "http://api.domain.tld" # define headers, options # plugin settings plugin: header_disable_cache: enabled: true header: 'X-Guzzle-Skip-Cache' # Optional