PHPackages                             hengebytes/soap-core-async-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. [HTTP &amp; Networking](/categories/http)
4. /
5. hengebytes/soap-core-async-bundle

ActiveSymfony-bundle[HTTP &amp; Networking](/categories/http)

hengebytes/soap-core-async-bundle
=================================

Symfony bundle for using http client as soap async client

v1.0.5(9mo ago)283MITPHP &gt;=8.3

Since Apr 2Compare

[ Source](https://github.com/hengebytes/soap-core-async-bundle)[ Packagist](https://packagist.org/packages/hengebytes/soap-core-async-bundle)[ RSS](/packages/hengebytes-soap-core-async-bundle/feed)WikiDiscussions Synced 1mo ago

READMEChangelog (4)Dependencies (6)Versions (7)Used By (0)

Soap Core Async Bundle
======================

[](#soap-core-async-bundle)

[![Latest Stable Version](https://camo.githubusercontent.com/14415715e96cf25dc6274f3ddc9575c130a6e0884e49f2534db54afc4663fb1a/68747470733a2f2f706f7365722e707567782e6f72672f68656e676562797465732f736f61702d636f72652d6173796e632d62756e646c652f762f737461626c652e737667)](https://packagist.org/packages/hengebytes/soap-core-async-bundle)[![Total Downloads](https://camo.githubusercontent.com/7f8e29b06fc57fd67c4baa1ca798bdf54b3e1faf99316d7bc762d02f6c20cd88/68747470733a2f2f706f7365722e707567782e6f72672f68656e676562797465732f736f61702d636f72652d6173796e632d62756e646c652f646f776e6c6f6164732e737667)](https://packagist.org/packages/hengebytes/soap-core-async-bundle)[![License](https://camo.githubusercontent.com/e228cb0c7a78ae2e29fb21ececb4bbd4e69cb5f589bfe62f45fd9198578145ca/68747470733a2f2f706f7365722e707567782e6f72672f68656e676562797465732f736f61702d636f72652d6173796e632d62756e646c652f6c6963656e73652e737667)](https://packagist.org/packages/hengebytes/soap-core-async-bundle)

This bundle provides a way to filter the response of async web services core bundle.

Add the bundle to your Kernel
-----------------------------

[](#add-the-bundle-to-your-kernel)

```
// config/bundles.php
return [
    // ...
    Hengebytes\SoapCoreAsyncBundle\HBSoapCoreAsyncBundle::class => ['all' => true],
];
```

[Usage](https://github.com/hengebytes/webservice-core-async-bundle)
-------------------------------------------------------------------

[](#usage)

### If you need some custom SOAP headers, you can add it to the request with middleware.

[](#if-you-need-some-custom-soap-headers-you-can-add-it-to-the-request-with-middleware)

```
// src/Middleware/CustomSoapHeaderMiddleware.php
namespace App\Middleware;

use Hengebytes\SettingBundle\Interfaces\SettingHandlerInterface;
use Hengebytes\WebserviceCoreAsyncBundle\Middleware\RequestModifierInterface;
use Hengebytes\WebserviceCoreAsyncBundle\Request\WSRequest;
use Soap\Xml\Builder\SoapHeader;
use function VeeWee\Xml\Dom\Builder\children;
use function VeeWee\Xml\Dom\Builder\namespaced_element;
use function VeeWee\Xml\Dom\Builder\value;

readonly class SoapHeaderRequestModifier implements RequestModifierInterface
{
    public function modify(WSRequest $request): void
    {
        $tns = 'http://htng.org/1.1/Header/';
        $request->setHeaders([
            new SoapHeader(
                $tns,
                'hb322:HTNGHeader',
                children(
                    namespaced_element($tns, 'hb322:From', children(
                            namespaced_element($tns, 'hb322:systemId', value('APPTEST')),
                            namespaced_element($tns, 'hb322:Credential', children(
                                    namespaced_element($tns, 'hb322:userName', value('someUsername')),
                                    namespaced_element($tns, 'hb322:password', value('somePassword'))
                                )
                            )
                        )
                    ),
                    namespaced_element($tns, 'hb322:timeStamp', value(date('c')))
                )
            ),
        ]);
    }

    public function supports(WSRequest $request): bool
    {
        return $request->webService === 'YourServiceName' && $request->subService === 'YourSubServiceName';
    }

    public static function getPriority(): int
    {
        return 0;
    }
}
```

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance58

Moderate activity, may be stable

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity56

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

Recently: every ~33 days

Total

6

Last Release

275d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

symfonybundleASYNC HTTP ClientPHP Soap

### Embed Badge

![Health badge](/badges/hengebytes-soap-core-async-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/hengebytes-soap-core-async-bundle/health.svg)](https://phpackages.com/packages/hengebytes-soap-core-async-bundle)
```

###  Alternatives

[lexik/jwt-authentication-bundle

This bundle provides JWT authentication for your Symfony REST API

2.6k58.7M210](/packages/lexik-jwt-authentication-bundle)[phpro/soap-client

A general purpose SoapClient library

8885.6M46](/packages/phpro-soap-client)[fresh/centrifugo-bundle

Provides communication with web-socket server Centrifugo in Symfony applications.

83375.3k](/packages/fresh-centrifugo-bundle)[cypresslab/patch-manager

A library to manage patch requests

16117.4k](/packages/cypresslab-patch-manager)[xabbuh/panda-bundle

integration of the Panda encoding services into the Symfony2 Framework

10174.6k](/packages/xabbuh-panda-bundle)[mediamonks/rest-api-bundle

MediaMonks Rest API Symfony Bundle

1656.2k1](/packages/mediamonks-rest-api-bundle)

PHPackages © 2026

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