PHPackages                             rymanalu/http - 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. rymanalu/http

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

rymanalu/http
=============

Simple HTTP Client library powered by Guzzle.

v0.2.1(9y ago)135MITPHPPHP &gt;=5.5.9

Since Dec 29Pushed 9y ago1 watchersCompare

[ Source](https://github.com/rymanalu/http)[ Packagist](https://packagist.org/packages/rymanalu/http)[ Docs](https://github.com/rymanalu/http)[ RSS](/packages/rymanalu-http/feed)WikiDiscussions 0.2 Synced today

READMEChangelog (3)Dependencies (4)Versions (6)Used By (0)

Simple HTTP Client library powered by Guzzle
============================================

[](#simple-http-client-library-powered-by-guzzle)

[![Build Status](https://camo.githubusercontent.com/c3e43c55e18103c1e596e0b793107884e54df24cafb5fa69bab2b71763bedc42/68747470733a2f2f7472617669732d63692e6f72672f72796d616e616c752f687474702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/rymanalu/http)

This package provides a new way to use [GuzzleHttp](https://packagist.org/packages/guzzlehttp/guzzle) package.

Installation
------------

[](#installation)

Install this package via the Composer package manager:

```
composer require rymanalu/http

```

Usage
-----

[](#usage)

Case: we want to call `http://foo.com/bar` API.

Steps:

- Create a new endpoint by extending `Rymanalu\Http\Endpoint`. For example:

```
use Rymanalu\Http\Endpoint;

class BarEndpoint extends Endpoint
{
    /**
     * The endpoint's URI.
     *
     * @var string
     */
    protected $uri = 'bar';

    /**
     * The endpoint's method.
     *
     * @var string
     */
    protected $method = 'POST';
}
```

- Create a new `Rymanalu\Http\Client` instance:

```
$http = new Rymanalu\Http\Client('http://foo.com');
```

- Call the `call` method in the `Rymanalu\Http\Client` instance by giving the `BarEndpoint` instance:

```
$endpoint = new BarEndpoint; // or `new BarEndpoint($anArrayOfGuzzleOptions)`

$response = $http->call($endpoint);
```

- The `$response` will be an object of `Rymanalu\Http\Response`:

```
// Check if the calls is successful by the response code...
$response->isSuccessful(); // `true` or `false`

// Get the response body...
$response->getBody(); // object of `stdClass`
$response->getBody(true); // array
```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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.

###  Release Activity

Cadence

Every ~23 days

Total

5

Last Release

3379d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6141573?v=4)[Roni Yusuf Manalu](/maintainers/rymanalu)[@rymanalu](https://github.com/rymanalu)

---

Top Contributors

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

---

Tags

httpGuzzle

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rymanalu-http/health.svg)

```
[![Health](https://phpackages.com/badges/rymanalu-http/health.svg)](https://phpackages.com/packages/rymanalu-http)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.2k532.1M2.5k](/packages/aws-aws-sdk-php)[guzzlehttp/psr7

PSR-7 message implementation that also provides common utility methods

7.9k1.1B3.8k](/packages/guzzlehttp-psr7)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k34](/packages/neuron-core-neuron-ai)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[graham-campbell/guzzle-factory

Provides A Simple Guzzle Factory With Good Defaults

926.8M53](/packages/graham-campbell-guzzle-factory)[graze/guzzle-jsonrpc

JSON-RPC 2.0 client for Guzzle

931.2M24](/packages/graze-guzzle-jsonrpc)

PHPackages © 2026

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