kruczkowski/buzz-bundle

Bundle around the Buzz HTTP client

Installs: 24

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 36

Type:symfony-bundle

v1.2.0 2020-01-11 16:55 UTC

This package is not auto-updated.

Last update: 2024-05-27 12:25:19 UTC


README

This bundle provides a simple integration of the "Buzz library" from Kris Wallsmith into Symfony 5. Buzz is a lightweight PHP 5.3 library for issuing HTTP requests. You can find more information about Buzz on its dedicated page at https://github.com/kriswallsmith/Buzz.

Installation

Installing the bundle via packagist is the quickest and simplest method of installing the bundle. Here are the steps:

Step 1: Composer require

$ php composer.phar require "kruczkowski/buzz-bundle":"dev-master"

Step 2: Enable the bundle in the kernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Kruczkowski\Bundle\BuzzBundle\BuzzBundle(),
        // ...
    );
}

That's it! You are ready to use Buzz with Symfony 5.