PHPackages                             viktorprogger/async-soap-guzzle - 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. viktorprogger/async-soap-guzzle

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

viktorprogger/async-soap-guzzle
===============================

An asynchronous SOAP client build on top of Guzzle.

v0.2.5(7y ago)044MITPHPPHP &gt;=5.5.0

Since Apr 3Pushed 6y agoCompare

[ Source](https://github.com/viktorprogger/async-soap-guzzle)[ Packagist](https://packagist.org/packages/viktorprogger/async-soap-guzzle)[ RSS](/packages/viktorprogger-async-soap-guzzle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (8)Used By (0)

Asynchronous SOAP client
========================

[](#asynchronous-soap-client)

[![Build Status](https://camo.githubusercontent.com/19280cc254edeec52b596e4610e2e836fbf098a57c6aa873cb98898f22d76cb1/68747470733a2f2f7472617669732d63692e6f72672f6d656e672d7469616e2f6173796e632d736f61702d67757a7a6c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/meng-tian/async-soap-guzzle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/75e7aee7fb9983bec6d628fba49c3694c561a3b4dae0f31c91afc3b449e62913/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d656e672d7469616e2f6173796e632d736f61702d67757a7a6c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/meng-tian/async-soap-guzzle/?branch=master)[![codecov.io](https://camo.githubusercontent.com/a39b45de033ec1e6c5d07629cbedc503976ad634eef2083c8e216829d9f9a38a/68747470733a2f2f636f6465636f762e696f2f6769746875622f6d656e672d7469616e2f6173796e632d736f61702d67757a7a6c652f636f7665726167652e7376673f6272616e63683d6d6173746572)](https://codecov.io/github/meng-tian/async-soap-guzzle?branch=master)

An asynchronous SOAP client build on top of Guzzle. The `SoapClient` implements [meng-tian/php-async-soap](https://github.com/meng-tian/php-async-soap).

Requirement
-----------

[](#requirement)

PHP 5.5 --enablelibxml --enable-soap

Install
-------

[](#install)

```
composer require meng-tian/async-soap-guzzle

```

Usage
-----

[](#usage)

```
use GuzzleHttp\Client;
use Meng\AsyncSoap\Guzzle\Factory;

$factory = new Factory();
$client = $factory->create(new Client(), 'http://www.webservicex.net/Statistics.asmx?WSDL');

// async call
$promise = $client->callAsync('GetStatistics', [['X' => [1,2,3]]]);
$result = $promise->wait();

// sync call
$result = $client->call('GetStatistics', [['X' => [1,2,3]]]);

// magic method
$promise = $client->GetStatistics(['X' => [1,2,3]]);
$result = $promise->wait();
```

License
-------

[](#license)

This library is released under [MIT](https://github.com/meng-tian/async-soap-guzzle/blob/master/LICENSE) license.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 76.7% 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 ~175 days

Recently: every ~258 days

Total

7

Last Release

2636d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/10acad9038a7b3af2d70f9404bdd4e377bbeb4214277a7cf61ae6fe9884988e6?d=identicon)[miolae](/maintainers/miolae)

---

Top Contributors

[![realmtian](https://avatars.githubusercontent.com/u/4396851?v=4)](https://github.com/realmtian "realmtian (33 commits)")[![viktorprogger](https://avatars.githubusercontent.com/u/7670669?v=4)](https://github.com/viktorprogger "viktorprogger (9 commits)")[![alexeyshockov](https://avatars.githubusercontent.com/u/203120?v=4)](https://github.com/alexeyshockov "alexeyshockov (1 commits)")

---

Tags

asynchronousGuzzlesoap

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/viktorprogger-async-soap-guzzle/health.svg)

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

###  Alternatives

[meng-tian/async-soap-guzzle

An asynchronous SOAP client build on top of Guzzle.

962.4M4](/packages/meng-tian-async-soap-guzzle)[kevinrob/guzzle-cache-middleware

A HTTP/1.1 Cache for Guzzle 6. It's a simple Middleware to be added in the HandlerStack. (RFC 7234)

43117.4M104](/packages/kevinrob-guzzle-cache-middleware)[eightpoints/guzzle-bundle

Integrates Guzzle 6.x, a PHP HTTP Client, into Symfony. Comes with easy and powerful configuration options and optional plugins.

45912.1M55](/packages/eightpoints-guzzle-bundle)[guzzlehttp/oauth-subscriber

Guzzle OAuth 1.0 subscriber

24114.5M141](/packages/guzzlehttp-oauth-subscriber)[caseyamcl/guzzle_retry_middleware

Guzzle v6+ retry middleware that handles 429/503 status codes and connection timeouts

21610.7M64](/packages/caseyamcl-guzzle-retry-middleware)[php-http/guzzle7-adapter

Guzzle 7 HTTP Adapter

9057.1M555](/packages/php-http-guzzle7-adapter)

PHPackages © 2026

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