Merge branch 'readmes' of https://github.com/aschamberger/BeSimpleSoap into aschamberger-readmes

This commit is contained in:
Francis Besset
2013-10-30 16:47:25 +01:00
5 changed files with 183 additions and 0 deletions

View File

@ -0,0 +1,33 @@
# 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": "dev-master"
}
}
```
Now you are ready to install the library:
```sh
php /usr/local/bin/composer.phar install
```