PHPackages                             zeljkobgd81/mailgun-guzzle-6 - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. zeljkobgd81/mailgun-guzzle-6

ActiveLibrary[HTTP &amp; Networking](/categories/http)

zeljkobgd81/mailgun-guzzle-6
============================

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

068PHP

Since Nov 5Pushed 10y ago1 watchersCompare

[ Source](https://github.com/zeljkobgd81/mailgun-guzzle-6)[ Packagist](https://packagist.org/packages/zeljkobgd81/mailgun-guzzle-6)[ RSS](/packages/zeljkobgd81-mailgun-guzzle-6/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Guzzle, PHP HTTP client and webservice framework
================================================

[](#guzzle-php-http-client-and-webservice-framework)

[![Build Status](https://camo.githubusercontent.com/e1788b553338af7a464581e4b98e1144822a641b3052e33350b7d686e7b84b38/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f67757a7a6c652f67757a7a6c652e7376673f6272616e63683d6d6173746572)](http://travis-ci.org/guzzle/guzzle)

Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services.

- Manages things like persistent connections, represents query strings as collections, simplifies sending streaming POST requests with fields and files, and abstracts away the underlying HTTP transport layer.
- Can send both synchronous and asynchronous requests using the same interface without requiring a dependency on a specific event loop.
- Pluggable HTTP adapters allows Guzzle to integrate with any method you choose for sending HTTP requests over the wire (e.g., cURL, sockets, PHP's stream wrapper, non-blocking event loops like ReactPHP.
- Guzzle makes it so that you no longer need to fool around with cURL options, stream contexts, or sockets.

```
$client = new GuzzleHttp\Client();
$response = $client->get('http://guzzlephp.org');
$res = $client->get('https://api.github.com/user', ['auth' =>  ['user', 'pass']]);
echo $res->getStatusCode();
// "200"
echo $res->getHeader('content-type');
// 'application/json; charset=utf8'
echo $res->getBody();
// {"type":"User"...'
var_export($res->json());
// Outputs the JSON decoded data

// Send an asynchronous request.
$req = $client->createRequest('GET', 'http://httpbin.org', ['future' => true]);
$client->send($req)->then(function ($response) {
    echo 'I completed! ' . $response;
});
```

Get more information and answers with the [Documentation](http://guzzlephp.org/), [Forums](https://groups.google.com/forum/?hl=en#!forum/guzzle), and [Gitter](https://gitter.im/guzzle/guzzle).

### Installing via Composer

[](#installing-via-composer)

The recommended way to install Guzzle is through [Composer](http://getcomposer.org).

```
# Install Composer
curl -sS https://getcomposer.org/installer | php
```

Next, run the Composer command to install the latest stable version of Guzzle:

```
composer.phar require guzzlehttp/guzzle
```

After installing, you need to require Composer's autoloader:

```
require 'vendor/autoload.php';
```

### Documentation

[](#documentation)

More information can be found in the online documentation at .

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/fecd125f46873a10a631e166c1318a894c3663efc0304667fe2a4ac136e0a7e5?d=identicon)[zeljkobgd81](/maintainers/zeljkobgd81)

---

Top Contributors

[![zeljkobgd81](https://avatars.githubusercontent.com/u/15673849?v=4)](https://github.com/zeljkobgd81 "zeljkobgd81 (1 commits)")

### Embed Badge

![Health badge](/badges/zeljkobgd81-mailgun-guzzle-6/health.svg)

```
[![Health](https://phpackages.com/badges/zeljkobgd81-mailgun-guzzle-6/health.svg)](https://phpackages.com/packages/zeljkobgd81-mailgun-guzzle-6)
```

###  Alternatives

[php-http/cache-plugin

PSR-6 Cache plugin for HTTPlug

25126.1M82](/packages/php-http-cache-plugin)[illuminate/http

The Illuminate Http package.

11937.9M7.0k](/packages/illuminate-http)[rdkafka/rdkafka

A PHP extension for Kafka

2.2k24.3k1](/packages/rdkafka-rdkafka)[httpsoft/http-message

Strict and fast implementation of PSR-7 and PSR-17

87965.9k114](/packages/httpsoft-http-message)[mezzio/mezzio-router

Router subcomponent for Mezzio

265.4M92](/packages/mezzio-mezzio-router)[serpapi/google-search-results-php

Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com

69127.2k](/packages/serpapi-google-search-results-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
