PHPackages                             bitstone/guzzle-wrapper - 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. bitstone/guzzle-wrapper

Abandoned → Laravel 7.0 implemented its own HttpClientLibrary

bitstone/guzzle-wrapper
=======================

A laravel wrapper around the Guzzle Client API.

v1.8(6y ago)44.7k1MITPHPPHP ^7.0CI failing

Since May 16Pushed 5y ago2 watchersCompare

[ Source](https://github.com/AndreiArba/bitstone-guzzle-wrapper)[ Packagist](https://packagist.org/packages/bitstone/guzzle-wrapper)[ RSS](/packages/bitstone-guzzle-wrapper/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (9)Used By (0)

Guzzle wrapper for HTTP Requests
================================

[](#guzzle-wrapper-for-http-requests)

A simple wrapper for guzzle http requests, to make the http calls using headers easier

Install
-------

[](#install)

Install this package using composer

```
composer require bitstone/guzzle-wrapper

or

add the library to your composer.json file:

"bitstone/guzzle-wrapper": "^1.6"
```

Then you need to update the service providers array, in your config/app.php

```
Bitstone\GuzzleWrapper\HttpServiceProvider::class
```

And the alias for the facade

```
'Http' => Bitstone\GuzzleWrapper\Http::class
```

Usage
-----

[](#usage)

```
Http::request('GET', http://example.com/api/v1/users', ['role' => 'admin'], ['Content-Type' => 'application/json']);
```

Or

```
Http::request('GET', http://example.com/api/v1/users?role=admin', [], ['Content-Type' => 'application/json']);
```

```
Http::request('POST', http://example.com/api/v1/users', ['option' => 'value'], ['Content-Type' => 'application/json', 'Accept' => 'application/json']);
```

But it's possible to call the specific http method as well:

```
Http::get('http://example.com/api/v1/users');
```

```
Http::post('http://example.com/api/v1/users/1', ['option' => 'value'], ['Accept' => 'application/json']);
```

```
Http::put('http://example.com/api/v1/users/1', ['option' => 'another value'], ['Accept' => 'application/json']);
```

```
Http::delete('http://example.com/api/v1/users/1');
```

```
Http::head('http://example.com/api/v1/users/1');
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~107 days

Recently: every ~42 days

Total

9

Last Release

2429d ago

PHP version history (3 changes)v1.0PHP &gt;=5.3.0

v1.1PHP &gt;=5.6.0

v1.4PHP ^7.0

### Community

---

Top Contributors

[![AndreiArbaBitstone](https://avatars.githubusercontent.com/u/26745734?v=4)](https://github.com/AndreiArbaBitstone "AndreiArbaBitstone (6 commits)")

### Embed Badge

![Health badge](/badges/bitstone-guzzle-wrapper/health.svg)

```
[![Health](https://phpackages.com/badges/bitstone-guzzle-wrapper/health.svg)](https://phpackages.com/packages/bitstone-guzzle-wrapper)
```

PHPackages © 2026

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