XamadoGuzzleBundle is a bundle for Symfony 2.1 that integrates the Guzzle library adding some useful features like object serialization using the JMSSerializerBundle.
Since this is developed for Symfony 2.1 and onwards the install method is using Composer.
Add the following to your composer.json
"require": {
...
"xamado/guzzle-bundle": "dev-master"
...
}
And now update your dependencies
$ php composer.phar update
Enable the bundle in your AppKernel by adding it to the end of your bundles array
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Xamado\GuzzleBundle\XamadoGuzzleBundle()
);
}
Fill me in
This bundle is under the MIT license.