PHPackages                             deeep/service-client-bundle - 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. deeep/service-client-bundle

ActiveSymfony-bundle

deeep/service-client-bundle
===========================

Symfony bundle: HTTP client with retry, multi-host, circuit breaker, and async support via Fibers

1.0.0(3mo ago)116↓66.7%1BSD-3-ClausePHPPHP &gt;=8.4

Since Feb 10Pushed 3mo agoCompare

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

READMEChangelog (1)Dependencies (10)Versions (2)Used By (0)

Service Client Bundle
=====================

[](#service-client-bundle)

> 🌐 **Language:** [English](README.md) | [Русский](README.ru.md)

Symfony bundle: HTTP client with retry, multi-host failover, circuit breaker, and async support via PHP Fibers.

Features
--------

[](#features)

- **Retry with exponential backoff** — configurable delay, jitter, and status codes
- **Multi-host strategies** — failover, round-robin, parallel
- **Circuit breaker** — automatic failure detection and recovery
- **Async via Fibers** — non-blocking requests with Revolt event loop
- **Middleware pipeline** — extensible request/response processing
- **Multiple auth methods** — Bearer, API Key, Basic
- **Typed requests** — ISP-based interfaces with response mapping

Requirements
------------

[](#requirements)

- PHP 8.4+
- Symfony 7.4+ | 8.0+
- Guzzle 7.9+

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

[](#installation)

```
composer require deeep/service-client-bundle
```

Register the bundle in `config/bundles.php`:

```
return [
    // ...
    Deeep\ServiceClient\ServiceClientBundle::class => ['all' => true],
];
```

Configuration
-------------

[](#configuration)

```
