aeolu / soap
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (0.3.1) of this package.
Soap Wrapper
0.3.1
2014-12-24 21:14 UTC
This package is not auto-updated.
Last update: 2019-02-20 18:15:36 UTC
README
use Aeolu\Soap\Client;
$client = Client::url($url)
->login('username')
->password('password')
->auth('ntlm);
$response = $client->get('Read', [
'key' => 'value'
]);
var_dump($response);
Example
$url = '/path/to/file.wsdl';
$username = 'domain\User';
$password = '******';
$client = new SoapNtlm($url, [
'login' => $username,
'password' => $password
]);
$response = $client->Read([
'key' => 'value
]);
var_dump($response);