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

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

ovvio/http-client
=================

Provides powerful methods to fetch HTTP resources synchronously or asynchronously

v1.0.0(2w ago)03proprietaryPHPPHP &gt;=8.5

Since Jul 29Pushed 2w ago1 watchersCompare

[ Source](https://github.com/ovvio/http-client)[ Packagist](https://packagist.org/packages/ovvio/http-client)[ Docs](https://ovvio.pro)[ RSS](/packages/ovvio-http-client/feed)WikiDiscussions 1.0 Synced 1w ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

HTTP client
===========

[](#http-client)

Provides powerful methods to fetch HTTP resources synchronously or asynchronously

Technical Requirements &amp; Installation
-----------------------------------------

[](#technical-requirements--installation)

[PHP 8.5](https://www.php.net/releases/8.5/en.php) - [Installation and Configuration](https://www.php.net/manual/en/install.php)

[Composer (System Requirements)](https://getcomposer.org/doc/00-intro.md#system-requirements)

To install run this:

```
composer require ovvio/http-client
```

Example
-------

[](#example)

```
...

use Ovvio\Component\Http\HttpClient\HttpClientInterface;
use Ovvio\Component\Http\HttpClient\Request\Enum\RequestMethodEnum;
use Ovvio\Component\Http\HttpClient\Response\Enum\HttpResponseStatusCodeEnum;

...

    public function __construct(
        private readonly HttpClientInterface $httpClient,
    ) {
    }

...

    public function foo(FooDtoInterface $fooDto): void
    {

        ...

        /** @var \Uri\Rfc3986\Uri $url URL */
        $url = new \Uri\Rfc3986\Uri('https://ovvio.pro');
        $requestMethod = RequestMethodEnum::GET;

        $request = RequestFactory::create(
            url: $url,
            method: $requestMethod,
        );

        $request->addHeader(new AuthorizationRequestHeader('SOME TOKEN'));

        $response = $this->httpClient->request($request);
        if ($response->getStatusCode() !== HttpResponseStatusCodeEnum::OK) {
            // do something
        }

        ...

    }

...
```

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance96

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

20d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/30261512?v=4)[Naziron](/maintainers/Naziron)[@Naziron](https://github.com/Naziron)

---

Top Contributors

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

---

Tags

httphttp

### Embed Badge

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

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

###  Alternatives

[bitrix24/b24phpsdk

An official PHP library for the Bitrix24 REST API

10250.3k6](/packages/bitrix24-b24phpsdk)

PHPackages © 2026

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