Build SOAP and WSDL based web services
BeSimpleSoap consists of five components ...
The BeSimpleSoapBundle is a Symfony2 bundle to build WSDL and SOAP based web services. For further information see the README.
The BeSimpleSoapClient is a component that extends the native PHP SoapClient with further features like SwA, MTOM and WS-Security. For further information see the README.
The BeSimpleSoapCommon component contains functionylity shared by both the server and client implementations. For further information see the README.
The BeSimpleSoapServer is a component that extends the native PHP SoapServer with further features like SwA, MTOM and WS-Security. For further information see the README.
For further information see the README.
If you do not yet have composer, install it like this:
curl -s http://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin
Create a composer.json
file:
{
"require": {
"besimple/soap": "0.2.*@dev"
}
}
Now you are ready to install the library:
php /usr/local/bin/composer.phar install