djgxp/guzzle-bundle

Log guzzle request in Symfony profiler

Installs: 1 011

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Type:symfony-bundle

1.0.1 2019-09-03 02:15 UTC

This package is auto-updated.

Last update: 2024-09-29 05:55:25 UTC


README

Log Guzzle in Symfony profiler

Installation

  1. Add this repository to your composer.json:
 "repositories": [
        ...
        { "type": "git", "url": "https://github.com/djgxp/DjgxpGuzzleBundle.git" },
 ]
  1. Add the bundle to your composer.json:

composer require djgxp/guzzle-bundle dev-master@dev

  1. Enable the bundle for all Symfony environments:
// bundles.php
return [
    //...
    Djgxp\Bundle\GuzzleBundle\DjgxpGuzzleBundle::class => ['all' => true],
];

Compatibility

Works with Guzzle 6

Usage

services:
    your_guzzle_services_id:
        class: GuzzleHttp\Client
        tags:
            - { name: guzzle.client }