PHPackages                             pierrerolland/guzzle-config-operations-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. pierrerolland/guzzle-config-operations-bundle

ActiveSymfony-bundle

pierrerolland/guzzle-config-operations-bundle
=============================================

This bundle allows Symfony projects to add Guzzle operations to their configuration

v3.2.1(7y ago)330.5k3MITPHPPHP &gt;=7.1

Since Jun 2Pushed 7y agoCompare

[ Source](https://github.com/pierrerolland/guzzle-config-operations-bundle)[ Packagist](https://packagist.org/packages/pierrerolland/guzzle-config-operations-bundle)[ RSS](/packages/pierrerolland-guzzle-config-operations-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (7)Versions (29)Used By (0)

guzzle-config-operations-bundle
===============================

[](#guzzle-config-operations-bundle)

[![Build Status](https://camo.githubusercontent.com/fc61d534ae35582529eb6a66c6be7aca07fd2fc88d9e3396cfe6307aabf26ced/68747470733a2f2f7472617669732d63692e6f72672f706965727265726f6c6c616e642f67757a7a6c652d636f6e6669672d6f7065726174696f6e732d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/pierrerolland/guzzle-config-operations-bundle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/6d2017bbbd669518efc1a360b7ca1acd66602abbfde092bcbb71676b5b6ffd0a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f706965727265726f6c6c616e642f67757a7a6c652d636f6e6669672d6f7065726174696f6e732d62756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/pierrerolland/guzzle-config-operations-bundle/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/2db3682981fefa0e1a4a76cf197bbd7c5f23dee4fe29c99535d154f1202a2539/68747470733a2f2f706f7365722e707567782e6f72672f706965727265726f6c6c616e642f67757a7a6c652d636f6e6669672d6f7065726174696f6e732d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/pierrerolland/guzzle-config-operations-bundle)

This bundle allows Symfony projects to add Guzzle operations to their configuration. It also uses Symfony's or JMS' serializer to directly deserialize responses into objects. All you have to do is define your calls in Yaml, and your model classes to welcome the responses, and you're done !

Installation
------------

[](#installation)

`composer require pierrerolland/guzzle-config-operations-bundle`

In your app/AppKernel.php if you're using Symfony 2/3

```
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Guzzle\ConfigOperationsBundle\GuzzleConfigOperationsBundle()
        ];

        return $bundles;
    }
```

In `config/bundles.php` with Symfony 4

```
