-
Add GuzzleBundle to your dependencies:
// composer.json { // ... "require": { // ... "misd/guzzle-bundle": "~1.0" } }
-
Use Composer to download and install GuzzleBundle:
$ php composer.phar update misd/guzzle-bundle
-
Register the bundle in your application:
// app/AppKernel.php class AppKernel extends Kernel { // ... public function registerBundles() { $bundles = array( // ... new Misd\GuzzleBundle\MisdGuzzleBundle() ); } }