Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b1cea0857a | ||
![]() |
9d62ccdb86 | ||
![]() |
0efb3a5dfa | ||
![]() |
9cc377d653 | ||
![]() |
67680e1564 | ||
![]() |
2187cd8b44 |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*.swp
|
||||
composer.phar
|
||||
composer.lock
|
@@ -4,14 +4,12 @@
|
||||
"description": "OAuth 1 PHP Library",
|
||||
"keywords": ["oauth"],
|
||||
"homepage": "https://github.com/EHER/OAuth",
|
||||
"psr-0": {
|
||||
"OAuth": "src/"
|
||||
},
|
||||
"authors":
|
||||
{
|
||||
"name": "Andy Smith",
|
||||
"homepage": "http://term.ie/"
|
||||
},
|
||||
"authors":[
|
||||
{
|
||||
"name": "Andy Smith",
|
||||
"homepage": "http://term.ie/"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
}
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Eher\OAuth\SignatureMethod;
|
||||
namespace Eher\OAuth;
|
||||
|
||||
/**
|
||||
* The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104]
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Eher\OAuth\SignatureMethod;
|
||||
namespace Eher\OAuth;
|
||||
|
||||
/**
|
||||
* The PLAINTEXT method does not provide any security protection and SHOULD only be used
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Eher\OAuth\SignatureMethod;
|
||||
namespace Eher\OAuth;
|
||||
|
||||
/**
|
||||
* A class for implementing a Signature Method
|
Reference in New Issue
Block a user