2018-04-06 11:58:10 +02:00
|
|
|
# BeSimpleSoap (Symfony 3.0)
|
2013-08-24 17:31:35 +02:00
|
|
|
|
2018-04-06 11:58:10 +02:00
|
|
|
This fork aim to provide the BeSimpleSoap bundles compatibles with Symfony 3.
|
2013-08-24 17:31:35 +02:00
|
|
|
|
2018-04-06 11:58:10 +02:00
|
|
|
We forked the official
|
|
|
|
[BeSimpleSoap](https://github.com/BeSimple/BeSimpleSoap) repository in
|
|
|
|
order to sucessfully maintain some projects of ours. Therefore, **we are
|
|
|
|
not going to maintain this library**.
|
2013-08-24 17:31:35 +02:00
|
|
|
|
|
|
|
# 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": {
|
2018-04-06 11:58:10 +02:00
|
|
|
"cadoles/soap": "0.3.*@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
|
|
|
```
|