2 Commits
1.0.1 ... 1.0.3

Author SHA1 Message Date
Eher
9cc377d653 SignatureMethod removed from namespace 2012-02-08 23:35:31 -02:00
Eher
67680e1564 Composer project data fixed 2012-02-08 22:44:20 -02:00
5 changed files with 9 additions and 8 deletions

View File

@@ -7,11 +7,12 @@
"psr-0": { "psr-0": {
"OAuth": "src/" "OAuth": "src/"
}, },
"authors": "authors":[
{ {
"name": "Andy Smith", "name": "Andy Smith",
"homepage": "http://term.ie/" "homepage": "http://term.ie/"
}, }
],
"require": { "require": {
"php": ">=5.3.0" "php": ">=5.3.0"
} }

View File

@@ -1,6 +1,6 @@
<?php <?php
namespace Eher\OAuth\SignatureMethod; namespace Eher\OAuth;
/** /**
* The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] * The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104]

View File

@@ -1,6 +1,6 @@
<?php <?php
namespace Eher\OAuth\SignatureMethod; namespace Eher\OAuth;
/** /**
* The PLAINTEXT method does not provide any security protection and SHOULD only be used * The PLAINTEXT method does not provide any security protection and SHOULD only be used

View File

@@ -1,6 +1,6 @@
<?php <?php
namespace Eher\OAuth\SignatureMethod; namespace Eher\OAuth;
/** /**
* A class for implementing a Signature Method * A class for implementing a Signature Method