Go to file
Adrian Palmer ffeb67b4f0 Add phpunit.xml.dist 2014-08-27 17:47:56 +10:00
src/HttpSignatures/Guzzle Initial commit 2014-08-27 17:45:39 +10:00
tests Initial commit 2014-08-27 17:45:39 +10:00
.gitignore Initial commit 2014-08-27 17:45:39 +10:00
.travis.yml Initial commit 2014-08-27 17:45:39 +10:00
LICENSE.txt Initial commit 2014-08-27 17:45:39 +10:00
README.md Initial commit 2014-08-27 17:45:39 +10:00
composer.json Initial commit 2014-08-27 17:45:39 +10:00
phpunit.xml.dist Add phpunit.xml.dist 2014-08-27 17:47:56 +10:00

README.md

HTTP Signatures Guzzle 3

Adds Guzzle 3 support to 99designs/http-signatures

Signing with Guzzle 3

This library includes support for automatically signing Guzzle requests using an event subscriber.

use HttpSignatures\Guzzle\CreateRequestSubscriber;

$client = new \Guzzle\Http\Client('http://example.org');
$client->addSubscriber(new CreateRequestSubscriber($context));

// The below will now send a signed request to: http://example.org/path?query=123
$client->get('/path?query=123', array(
  'Date' => 'Wed, 30 Jul 2014 16:40:19 -0700',
  'Accept' => 'llamas',
))->send();

Contributing

Pull Requests are welcome.