PHPackages                             php-soap-backports/engine - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. php-soap-backports/engine

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

php-soap-backports/engine
=========================

SOAP engine design back-porting to PHP 7.1

v1.3.0(3y ago)12.9k1MITPHPPHP &gt;=7.1

Since Nov 25Pushed 3y agoCompare

[ Source](https://github.com/php-soap-backports/engine)[ Packagist](https://packagist.org/packages/php-soap-backports/engine)[ Fund](https://opencollective.com/php-soap-backports)[ RSS](/packages/php-soap-backports-engine/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (1)Versions (3)Used By (1)

SOAP Engine backport
====================

[](#soap-engine-backport)

This package contains the contracts and models that allow you to create a customizable SOAP engine compatible for php 7.1. The design looks like this:

[![Engine](docs/engine.png)](docs/engine.png)

- **Driver:** A driver is a combination of an encoder + decoder + metadata that can work together in order to process SOAP requests.
    - **Encoder:** Can encode mixed data into a valid SOAP Request.
    - **Decoder:** Can decode a SOAP Response into a mixed data result.
    - **Metadata:** Processes the WSDL and returns a collection of available types and methods.
- **Transport:** Sends the HTTP SOAP Request and receives the HTTP SOAP Response.

Every component above can be used seperately in order to create your own customized SOAP Engine.

Want to help out? 💚
===================

[](#want-to-help-out-)

- [Become a Sponsor of Project author](https://github.com/php-soap/.github/blob/main/HELPING_OUT.md#sponsor)
- [Become a Sponsor of Backport author](https://github.com/php-soap-backports/.github/blob/main/HELPING_OUT.md#sponsor)
- [Contribute to project](https://github.com/php-soap/.github/blob/main/HELPING_OUT.md#contribute)
- [Contribute to backport project](https://github.com/php-soap-backports/.github/blob/main/HELPING_OUT.md#contribute)

Installation
============

[](#installation)

```
composer install php-soap-backports/engine
```

Engines
-------

[](#engines)

This package provides engines that can be used in a generic way:

### SimpleEngine

[](#simpleengine)

The SimpleEngine is a wrapper around a previous defined `Driver` and a `Transport` implementation.

```
use Soap\Engine\SimpleEngine;

$engine = new SimpleEngine($driver,$transport);
```

### LazyEngine

[](#lazyengine)

You don't want to be loading WSDL files or SOAP services if you don't need to. By wrapping an engine in a lazy engine, you can prevent any WSDL loading from happening before actually requesting a resource.

```
use Soap\Engine\SimpleEngine;
use Soap\Engine\LazyEngine;

$engine = new LazyEngine(function () {
    return new SimpleEngine($driver, $transport);
});
```

List of compatible components:
------------------------------

[](#list-of-compatible-components)

- [ext-soap-engine](https://github.com/php-soap-backports/ext-soap-engine): An engine based on PHP's ext-soap.
    - **ExtSoapEncoder:** Uses PHP's `SoapClient` in order to encode a mixed request body into a SOAP request.
    - **ExtSoapDecoder:** Uses PHP's `SoapClient` in order to decode a SOAP Response into mixed data.
    - **ExtSoapMetadata:** Parses the methods and types from PHP's `SoapClient` into something more usable.
    - **ExtSoapDriver:** Combines the ext-soap encoder, decoder and metadata tools into a usable `ext-soap` preset.
    - **ExtSoapClientTransport:** Uses PHP's `SoapClient` to handle SOAP requests.
    - **ExtSoapServerTransport:** Uses PHP's `SoapServer` to handle SOAP requests.
    - **TraceableTransport:** Can be used to decorate another transport and keeps track of the last request and response.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 55.3% 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

Unknown

Total

1

Last Release

1286d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16020878?v=4)[Artem Vasilev](/maintainers/kernusr)[@kernusr](https://github.com/kernusr)

---

Top Contributors

[![veewee](https://avatars.githubusercontent.com/u/1618158?v=4)](https://github.com/veewee "veewee (21 commits)")[![kernusr](https://avatars.githubusercontent.com/u/16020878?v=4)](https://github.com/kernusr "kernusr (17 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/php-soap-backports-engine/health.svg)

```
[![Health](https://phpackages.com/badges/php-soap-backports-engine/health.svg)](https://phpackages.com/packages/php-soap-backports-engine)
```

###  Alternatives

[humanmade/wp-flags

Lightweight WordPress plugin to enable exposing feature flags to end-users, based on code-based ( or admin UI in the future ) criteria.

3656.1k](/packages/humanmade-wp-flags)[limingxinleo/happy-join-hyperf

组件嗨化计划

255.1k17](/packages/limingxinleo-happy-join-hyperf)

PHPackages © 2026

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