https://github.com/talliumcom/sumatra-php-soap-client
SOAP Client for Sumatra
https://github.com/talliumcom/sumatra-php-soap-client
client php7 soap sumatra
Last synced: 5 months ago
JSON representation
SOAP Client for Sumatra
- Host: GitHub
- URL: https://github.com/talliumcom/sumatra-php-soap-client
- Owner: talliumcom
- License: mit
- Fork: true (a2ncer/sumatra-php-soap-client)
- Created: 2018-07-10T13:10:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-13T13:37:28.000Z (almost 8 years ago)
- Last Synced: 2024-04-18T00:12:16.818Z (about 2 years ago)
- Topics: client, php7, soap, sumatra
- Language: PHP
- Homepage: https://packagist.org/packages/a2ncer/sumatra-php-soap-client
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://packagist.org/packages/talliumcom/sumatra-php-soap-client/stats)
[](https://packagist.org/packages/talliumcom/sumatra-php-soap-client)
## SOAP Client for Sumatra
### Requirements
* php >7.1
* ext-soap
* ext-xml
### Installation
```bash
composer require talliumcom/sumatra-php-soap-client:dev-master
```
### Usage
```php
withBegruendung('John Snow')
->withAnrede('Herr')
->withNewsletter(true)
->withZuname('Albrecht')
->withEmail('test@example.com');
try {
$response = $client->kunden_einwilligung($argument);
echo $response->getStatus()->getInformation();
} catch (Exception $exception) {
echo $exception->getMessage();
}
```
### Development Setup
```bash
composer install --ignore-platform-reqs
docker-compose up -d
docker-compose exec php bash
apt-get update
apt-get install libxml2-dev -y
docker-php-ext-install soap
php -S 0.0.0.0:80
```