PHPackages                             kduma/laravel-soap-server - 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. [API Development](/categories/api)
4. /
5. kduma/laravel-soap-server

ActiveLibrary[API Development](/categories/api)

kduma/laravel-soap-server
=========================

Laravel SOAP service server

2022.3k↓49.5%5[1 issues](https://github.com/kduma-OSS/LV-soap-server/issues)PHPCI failing

Since Apr 8Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/kduma-OSS/LV-soap-server)[ Packagist](https://packagist.org/packages/kduma/laravel-soap-server)[ RSS](/packages/kduma-laravel-soap-server/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel SOAP Server
===================

[](#laravel-soap-server)

[![Latest Stable Version](https://camo.githubusercontent.com/527f38d7d6491c8248ebe7e4a5d61e8466474f65a8c1267be7531150f546e373/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f6c61726176656c2d736f61702d7365727665722f762f737461626c652e737667)](https://packagist.org/packages/kduma/laravel-soap-server)[![Total Downloads](https://camo.githubusercontent.com/2645c7ae7fb2f4541a339328701bad4bbd2ba417f8f3551d2aae5df06dd9fedc/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f6c61726176656c2d736f61702d7365727665722f646f776e6c6f6164732e737667)](https://packagist.org/packages/kduma/laravel-soap-server)[![License](https://camo.githubusercontent.com/5a9b755961dae4f1095e01f5ad282013029bb58c01f58113ca8dba1f927c6c99/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f6c61726176656c2d736f61702d7365727665722f6c6963656e73652e737667)](https://packagist.org/packages/kduma/laravel-soap-server)

Wrapper for creating SOAP web service servers in Laravel using Laminas/Soap.

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

[](#requirements)

- PHP `^8.3`
- Laravel `^12.0 || ^13.0`
- `ext-soap`

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

[](#installation)

```
composer require kduma/laravel-soap-server
```

Usage
-----

[](#usage)

Create a service class:

```
class MathService
{
    /** @param float $a */
    /** @param float $b */
    public function add(float $a = 0, float $b = 0): float
    {
        return $a + $b;
    }
}
```

Create a controller:

```
class MySoapController extends \KDuma\SoapServer\AbstractSoapServerController
{
    protected function getService(): string { return MathService::class; }
    protected function getEndpoint(): string { return route('soap'); }
    protected function getWsdlUri(): string { return route('soap.wsdl'); }
}
```

Register routes:

```
Route::name('soap.wsdl')->get('/soap.wsdl', [MySoapController::class, 'wsdlProvider']);
Route::name('soap')->post('/soap', [MySoapController::class, 'soapServer']);
```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance55

Moderate activity, may be stable

Popularity37

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

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

---

Top Contributors

[![kduma](https://avatars.githubusercontent.com/u/1062582?v=4)](https://github.com/kduma "kduma (16 commits)")[![raidski20](https://avatars.githubusercontent.com/u/26503233?v=4)](https://github.com/raidski20 "raidski20 (1 commits)")

---

Tags

laravelphp

### Embed Badge

![Health badge](/badges/kduma-laravel-soap-server/health.svg)

```
[![Health](https://phpackages.com/badges/kduma-laravel-soap-server/health.svg)](https://phpackages.com/packages/kduma-laravel-soap-server)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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