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(1y ago)014proprietaryPHPPHP &gt;=8.4

Since Dec 30Pushed 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 1mo ago

READMEChangelogDependencies (3)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

30

—

LowBetter than 65% of packages

Maintenance41

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

496d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3d4d74379caf63158e1464f74838ead3f7c4913bc66f0a2a22f7ce2ba0ef547d?d=identicon)[Naziron](/maintainers/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

[guzzlehttp/psr7

PSR-7 message implementation that also provides common utility methods

8.0k1.0B3.1k](/packages/guzzlehttp-psr7)[psr/http-message

Common interface for HTTP messages

7.1k1.0B5.5k](/packages/psr-http-message)[psr/http-factory

PSR-17: Common interfaces for PSR-7 HTTP message factories

1.9k692.9M1.9k](/packages/psr-http-factory)[psr/http-client

Common interface for HTTP clients

1.7k680.7M2.1k](/packages/psr-http-client)[symfony/http-client

Provides powerful methods to fetch HTTP resources synchronously or asynchronously

2.0k314.0M3.4k](/packages/symfony-http-client)[psr/link

Common interfaces for HTTP links

2.5k144.1M69](/packages/psr-link)

PHPackages © 2026

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