index
:
OAuth2/oauth2-server-php.git
add-coveralls-support
develop
main
php5.2-develop
psr-7
v2.x
version-1.14.2
A library for implementing an OAuth2 Server in php (mirror)
Andrey V.Kosteltsev
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Expand
)
Author
Files
Lines
2013-12-17
adds refresh token configuration to Server class
Brent Shaffer
2
-1
/
+32
2013-12-17
ensures config values are propogated to HttpBasic and ClientCredentials for n...
Brent Shaffer
3
-8
/
+16
2013-12-17
addresses #274 but for Redis
Brent Shaffer
1
-1
/
+3
2013-12-17
adds logic discussed in https://github.com/bshaffer/oauth2-server-php/pull/27...
Brent Shaffer
11
-15
/
+139
2013-12-16
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
1
-1
/
+1
2013-12-16
makes encodeToken protected, so extended methods can override this to add the...
Brent Shaffer
1
-1
/
+1
2013-12-15
fixes #274 - PDO was asserting null credentials
Brent Shaffer
1
-1
/
+1
2013-12-15
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
42
-45
/
+469
2013-12-14
Merge pull request #244 from julien-c/patch-1
Brent Shaffer
1
-2
/
+6
2013-12-14
Merge pull request #268 from F21/implement-jti
Brent Shaffer
8
-3
/
+198
2013-12-03
Formatting.
F21
4
-2
/
+7
2013-12-02
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
1
-1
/
+1
2013-12-02
runs php-cs-fixer on everything for code standards and whitespace fixing
Brent Shaffer
36
-25
/
+141
2013-12-01
If jti is expires, null is returned.
F21
1
-0
/
+1
2013-12-01
Add stubs for Mongo and Redis driver.
F21
2
-2
/
+21
2013-12-01
Formatting.
F21
1
-1
/
+0
2013-11-30
Merge pull request #266 from weaverryan/patch-1
Brent Shaffer
1
-1
/
+1
2013-11-30
Formatting.
F21
1
-1
/
+1
2013-11-30
Implement jti for JWT Bearer tokens to prevent replay attacks.
F21
6
-3
/
+173
2013-11-29
Removing unused argument to getAccessTokenData
Ryan Weaver
1
-1
/
+1
2013-11-27
removes php 5.4-specific code
Brent Shaffer
1
-2
/
+2
2013-11-27
adds automatic setting of user_id to the ClientCredentials grant
Brent Shaffer
10
-14
/
+61
2013-11-27
adds setClientCredentials convenience methods for all Storage types
Brent Shaffer
4
-11
/
+62
2013-11-01
adds setClientDetails convenience method
Brent Shaffer
1
-0
/
+11
2013-11-01
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
14
-83
/
+253
2013-10-31
Merge pull request #247 from fitndev/develop
Brent Shaffer
1
-1
/
+1
2013-10-27
Removing Laravel specific commit and moving to seperate branch
root
1
-1
/
+14
2013-10-16
Merge pull request #253 from redwormik/patch-1
Brent Shaffer
1
-1
/
+1
2013-10-16
Fixing CryptoToken refresh token lifetime
redwormik
1
-1
/
+1
2013-10-15
Unfortunately PHP does not allow for more than one call to fopen(php://input)...
root
1
-14
/
+1
2013-10-12
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
13
-72
/
+245
2013-09-28
Bearer token type was "bearer", however header expected "Bearer". This preven...
root
1
-1
/
+1
2013-09-25
Merge pull request #246 from bshaffer/refactor-crypto-tokens
Brent Shaffer
13
-81
/
+251
2013-09-25
refactors public key logic to be more intuitive
Brent Shaffer
13
-81
/
+251
2013-09-24
separates CryptoToken storage from AccessToken storage in CryptoTokenInterface
Brent Shaffer
3
-9
/
+12
2013-09-24
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
12
-58
/
+413
2013-09-24
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
89
-1986
/
+3519
2013-09-24
Merge pull request #245 from bshaffer/add-crypto-tokens
Brent Shaffer
12
-58
/
+413
2013-09-24
adds user_id to access token
Brent Shaffer
1
-0
/
+1
2013-09-23
cleans up server creation in tests, adds docs, makes storing the token string...
Brent Shaffer
3
-8
/
+33
2013-09-23
adds tests for secondary storage and cleans up JWT tests
Brent Shaffer
6
-83
/
+77
2013-09-23
fixes CryptoToken tests by allowing 'algorithm' config argument
Brent Shaffer
4
-26
/
+105
2013-09-21
fixes storage test names
Brent Shaffer
2
-2
/
+2
2013-09-21
adds support for JSON crypto tokens
Brent Shaffer
9
-18
/
+274
2013-09-21
fixes tests - adds null option for storage in UserCredentialsTest
Brent Shaffer
1
-1
/
+1
2013-09-21
refactors Storage tests - breaks them out into interface tests for each stora...
Brent Shaffer
9
-355
/
+391
2013-09-21
defines protected property on OAuth2\ResponseType\AccessToken
Brent Shaffer
1
-0
/
+1
2013-09-21
Merge branch 'develop' of https://github.com/bshaffer/oauth2-server-php into ...
Brent Shaffer
1
-1
/
+1
2013-09-20
More detailed implementation info
Julien Chaumond
1
-2
/
+6
2013-09-09
Merge pull request #230 from dsquier/develop
Brent Shaffer
1
-1
/
+1
[prev]
[next]