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

Abandoned → Laravel 7.0 implemented its own HttpClientLibrary[HTTP &amp; Networking](/categories/http)

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

A laravel wrapper around the Guzzle Client API.

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

Since May 16Pushed 6y 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 3d ago

READMEChangelogDependencies (4)Versions (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

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community9

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

2475d ago

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

v1.1PHP &gt;=5.6.0

v1.4PHP ^7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/96388a574a57e60991ce07282443df96edec32b77ee7a1c85c07b93a08124721?d=identicon)[AndreiArba](/maintainers/AndreiArba)

---

Top Contributors

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

---

Tags

httprequestlaravelGuzzlewrapper

###  Code Quality

TestsPHPUnit

### 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)
```

###  Alternatives

[bilfeldt/laravel-http-client-logger

A logger for the Laravel HTTP Client

1531.7M3](/packages/bilfeldt-laravel-http-client-logger)[kozz/laravel-guzzle-provider

Guzzle 5/6 Service Provider for Laravel

621.1M2](/packages/kozz-laravel-guzzle-provider)[behamin/service-proxy

for proxy or sending requests to other services with useful utilities

102.2k](/packages/behamin-service-proxy)

PHPackages © 2026

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