PHP Package: laminas/laminas-soap

Laminas Soap is a PHP library that provides a powerful SOAP client and server implementation for seamless web service integration.

Current Version: 2.14.0
Last Updated: 2024-11-29
PHP Requirement: ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0
Dependencies:
laminas/laminas-stdlib
laminas/laminas-servicemanager
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas Soap is a feature-rich PHP library that simplifies SOAP-based communication for developers. It offers a robust SOAP client and server, supporting WSDL and non-WSDL services. With Laminas Soap, you can effortlessly create, consume, and interact with SOAP services, making web service integration a breeze.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 2.14.0

Download Download v2.14.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-soap/2.14.0/loader.php';
require_once 'libs/laminas/laminas-stdlib/3.20.0/loader.php';
require_once 'libs/laminas/laminas-servicemanager/4.4.0/loader.php';

use Laminas\Soap\Client;
use Laminas\Soap\Server;

$obj = new Client();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.