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(1w ago)02proprietaryPHPPHP &gt;=8.5

Since Jun 22Pushed 1y 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 today

READMEChangelogDependencies (2)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.4](https://www.php.net/releases/8.4/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\RequestMethod;
use Ovvio\Component\Http\HttpClient\Response\Enum\ResponseStatusCode;

...

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

...

    public function foo(FooDtoInterface $fooDto): void
    {

        ...

        /** @var string $url URL */
        $url = 'https://ovvio.pro';
        $requestMethod = RequestMethod::GET;

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

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

        ...

    }

...
```

###  Health Score

33

↑

LowBetter than 72% of packages

Maintenance64

Regular maintenance activity

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

11d 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 (2 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

10244.2k5](/packages/bitrix24-b24phpsdk)

PHPackages © 2026

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