# Buzz-php **Repository Path**: tademeng/Buzz-php ## Basic Information - **Project Name**: Buzz-php - **Description**: Buzz is a lightweight PHP 5.3 library for issuing HTTP requests. - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-11 - **Last Updated**: 2022-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://secure.travis-ci.org/kriswallsmith/Buzz.png?branch=master)](http://travis-ci.org/kriswallsmith/Buzz) Buzz is a lightweight PHP 5.3 library for issuing HTTP requests. ```php get('http://www.google.com'); echo $browser->getLastRequest()."\n"; echo $response; ``` You can also use the low-level HTTP classes directly. ```php send($request, $response); echo $request; echo $response; ```