6 Commits
1.0.0 ... 1.0.4

Author SHA1 Message Date
Eher
b1cea0857a Merge branch 'master' of github.com:EHER/OAuth
Conflicts:
	.gitignore
	composer.json
2012-02-09 13:03:36 -02:00
Eher
9d62ccdb86 Compuser json fixed 2012-02-09 08:33:29 -02:00
Eher
0efb3a5dfa Ignore some compuser and vim files 2012-02-09 08:33:01 -02:00
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
Eher
2187cd8b44 Ignore files 2012-02-08 22:42:21 -02:00
6 changed files with 12 additions and 11 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*.swp
composer.phar
composer.lock

View File

@@ -4,14 +4,12 @@
"description": "OAuth 1 PHP Library", "description": "OAuth 1 PHP Library",
"keywords": ["oauth"], "keywords": ["oauth"],
"homepage": "https://github.com/EHER/OAuth", "homepage": "https://github.com/EHER/OAuth",
"psr-0": { "authors":[
"OAuth": "src/"
},
"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