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": {
|
2013-10-30 16:49:47 +01:00
|
|
|
"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
|
2013-10-30 16:49:47 +01:00
|
|
|
```
|