27 lines
405 B
Markdown
27 lines
405 B
Markdown
|
# BeSimpleSoapWsdl
|
||
|
|
||
|
TODO ...
|
||
|
|
||
|
# 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-wsdl": "dev-master"
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Now you are ready to install the library:
|
||
|
|
||
|
```sh
|
||
|
php /usr/local/bin/composer.phar install
|
||
|
```
|