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

Maintainers

Details

github.com/aeolu/soap

Source

Issues

Installs: 87

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/aeolu/soap

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);