PHPackages                             interaapps/ulole-http-client - 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. interaapps/ulole-http-client

ActiveLibrary

interaapps/ulole-http-client
============================

1.0.2(3y ago)03PHPPHP &gt;=8.0

Since Aug 24Pushed 3y agoCompare

[ Source](https://github.com/interaapps/ulole-http-client)[ Packagist](https://packagist.org/packages/interaapps/ulole-http-client)[ RSS](/packages/interaapps-ulole-http-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)DependenciesVersions (3)Used By (0)

Ulole HTTP Client `1.0`
=======================

[](#ulole-http-client-10)

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

[](#installation)

Module

#### UPPM

[](#uppm)

```
uppm i interaapps/ulole-http-client

```

#### Composer

[](#composer)

```
composer require interaapps/ulole-http-client

```

Getting started
---------------

[](#getting-started)

```
$client = new HttpClient("https://ping.intera.dev");

$authors = $client->get("/authors")
    ->send()
    ->json();

foreach ($authors as $author) {
    echo $author->name . "\n";
}

$success = $client->post("/authors", [
    "name" => "Author"
])
    ->bearer("HelloWorld")
    ->send()
    ->ok();

if ($success) {
    echo "Done!";
}

```

Request-Settings
----------------

[](#request-settings)

On a HttpRequest or for all HttpRequests on the HttpClient you can use some methods which will change some request options.

```
$request = $client->get("https://google.com");

$request->header("X-Header", "Value");
$request->bearer("ABCDE");

// Set Query Parameter
$request->query("key", "value");

// Set Body
$request->body("this-is-the-body=yey");

// Set Json Body
$request->json(["hello" => "world"]);

$request->timeout(150);

$request->followRedirects();
$request->notFollowRedirects();

$request->formData([
    "file" => new CURLFile("file.txt")
]);

$response = $request->send();

var_dump($response->json());
// From json model
var_dump($response->json(User::class));

var_dump($response->header("content-type"));
var_dump($response->body());
var_dump($response->status());
var_dump($response->ok());
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

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 ~0 days

Total

2

Last Release

1354d ago

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/interaapps-ulole-http-client/health.svg)

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

PHPackages © 2026

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