metasyntactical / php-soap-client-options
Allows for handling PHP Soap Client options in a way that validity and type safety are assured.
Installs: 739
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 2
pkg:composer/metasyntactical/php-soap-client-options
Requires
- php: 7.2.*|7.3.*|7.4.*
- beberlei/assert: ^3.2
Requires (Dev)
- phpunit/phpunit: ^8
This package is auto-updated.
Last update: 2025-10-05 03:36:03 UTC
README
Allows for handling PHP Soap Client options in a way that validity and type safety are assured.
Usage
Minimal example
$location = new \MetaSyntactical\SoapClientOptions\Params\Location('https://soap-endpoint.example.com');
$options = new \MetaSyntactical\SoapClientOptions\Options($location);
new \SoapClient($wsdl, $options->getOptionsArray();