gringlas / go-client
SoapClient for usage with GO API (https://www.general-overnight.com).
Installs: 82
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/gringlas/go-client
Requires
- php: ^7.0
This package is auto-updated.
Last update: 2025-09-12 19:49:29 UTC
README
SoapClient for usage with GO API (https://www.general-overnight.com).
How to use
Just create an object of GoClient class.
$wdsl = "Path/to/wdsl";
$options = [
'login' => 'yourGoLoginName',
'password' => 'yourGoPassword',
...
# pass other options for SoapCLient as noted in https://www.php.net/manual/de/soapclient.soapclient.php
];
$goClient = new GoClient($wdsl, $options);