Create WSDL files form PHP classes.
Via Composer
$ composer require php2wsdl/php2wsdl
$class = "Vendor\\MyClass";
$serviceURI = "http://www.myservice.com/soap";
$wsdlGenerator = new PHPClass2WSDL($class, $serviceURI);
// Generate thw WSDL from the class adding only the public methods that have @soap annotation.
$wsdlGenerator->generateWSDL(true);
$wsdlXML = $wsdlGenerator->dump();
$ phpunit
If you discover any security related issues, please email instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.