eightpoints/guzzle-wsse-plugin

This package is abandoned and no longer maintained. The author suggests using the eightpoints/guzzle-wsse-middleware package instead.

WSSE Middleware for Guzzle, a PHP HTTP client library and framework for building RESTful web service clients

v4.3.0 2019-08-09 06:54 UTC

This package is auto-updated.

Last update: 2019-08-13 10:02:18 UTC


README

This middleware integrates WSSE funtionality into Guzzle, a PHP framework for building RESTful web service clients.

Requirements

Installation

Using composer:

{
    "require": {
        "eightpoints/guzzle-wsse-middleware": "^4.1.1"
    }
}

Usage

<?php 

$wsse = new \EightPoints\Guzzle\WsseAuthMiddleware($username, $password);

# Optional: Set createdAt by a expression (if not, current time will be used automatically)
# http://php.net/manual/en/datetime.formats.relative.php
# Useful if there is a small difference of time between client and server
# DateTime object will be regenerated for every request
$wsse->setCreatedAtTimeExpression('-10 seconds');

$stack = \GuzzleHttp\HandlerStack::create();

// Add the wsse middleware to the handler stack.
$stack->push($wsse->attach());

$client   = new \GuzzleHttp\Client(['handler' => $stack]);
$response = $client->get('http://www.8points.de');

Authors

See also the list of contributors who participated in this project.

License

This middleware is licensed under the MIT License - see the LICENSE file for details