BeSimpleSoap/src/BeSimple/SoapCommon/README.md

34 lines
671 B
Markdown
Raw Normal View History

2013-08-24 17:31:35 +02:00
# BeSimpleSoapCommon
The BeSimpleSoapCommon component contains functionylity shared by both the server and client implementations.
# Features
* Common interfaces for SoapClient and SoapServer input/output processing flow
* MIME parser for SwA and MTOM implementation
* Soap type converters
# Installation
If you do not yet have composer, install it like this:
```sh
curl -s http://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin
```
Create a `composer.json` file:
```json
{
"require": {
"besimple/soap-common": "0.2.*@dev"
2013-08-24 17:31:35 +02:00
}
}
```
Now you are ready to install the library:
```sh
php /usr/local/bin/composer.phar install
```