| Age | Commit message (Expand) | Author | Files | Lines |
| 2013-01-16 | Updated storage drivers to support JWT bearer authorization grant. | Francis Chuang | 2 | -4/+22 |
| 2013-01-16 | Implemented ClientAssertionTypeInterface as per bshaffer's suggestion and upd... | Francis Chuang | 2 | -14/+39 |
| 2013-01-16 | Implemented JWT bearer authorization grant. | Francis Chuang | 2 | -0/+223 |
| 2013-01-01 | addresses #19 - uses headers instead of server when looking for AUTHORIZATION... | Brent Shaffer | 1 | -1/+1 |
| 2012-12-20 | fixes #11 - only returns refresh tokens at the expected times | Brent Shaffer | 9 | -29/+75 |
| 2012-12-17 | fixes #16 - removes redundant WWW-Authenticate header | Brent Shaffer | 1 | -1/+1 |
| 2012-12-11 | Merge pull request #13 from javigs/master | Brent Shaffer | 2 | -3/+3 |
| 2012-12-11 | Merge branch 'develop' of github.com:bshaffer/oauth2-server-php into develop | Brent Shaffer | 1 | -17/+49 |
| 2012-12-11 | adds 'content' property - fixes #15 | Brent Shaffer | 1 | -0/+1 |
| 2012-12-02 | Pass refresh_token_lifetime to override default | javigs | 1 | -2/+2 |
| 2012-12-02 | Missing $config params | javigs | 1 | -1/+1 |
| 2012-12-02 | add PDO storage support for refresh tokens | David Squier | 1 | -17/+49 |
| 2012-11-16 | fixes issue #5 - adds interface for getUserDetails so that tokenData can cont... | Brent Shaffer | 8 | -9/+35 |
| 2012-11-12 | allows for dependency injection of request object (to allow for HttpFoundatio... | Brent Shaffer | 18 | -70/+75 |
| 2012-10-31 | AuthCode validation - ensures provided url is decoded before comparision | Brent Shaffer | 1 | -1/+1 |
| 2012-10-27 | fixes AuthorizationCode errors to match v31 spec, adds 'errorUri' argument to... | Brent Shaffer | 4 | -15/+28 |
| 2012-10-26 | fixes grant_type for authorization codes, adds storage detection for user cre... | Brent Shaffer | 2 | -5/+6 |
| 2012-10-26 | reorders constructor args for server class | Brent Shaffer | 1 | -1/+1 |
| 2012-10-26 | changes get*Server to get*Controller | Brent Shaffer | 1 | -11/+11 |
| 2012-10-26 | experimenting with separate 'Controllers' for the different types of oauth re... | Brent Shaffer | 21 | -716/+1089 |
| 2012-10-24 | changes all occurences of ResponseParameter to Parameter in OAuth2 Response | Brent Shaffer | 2 | -15/+30 |
| 2012-10-24 | adds ability to declare storages later (or not at all) depending on your requ...v0.1 | Brent Shaffer | 1 | -8/+30 |
| 2012-10-17 | removes unnecessary second parameter to json-encode | Brent Shaffer | 1 | -1/+1 |
| 2012-10-16 | converts expires to timestamp and back for mysql | Brent Shaffer | 1 | -3/+19 |
| 2012-10-16 | adds support for User Credentials in PDO storage | Brent Shaffer | 1 | -1/+36 |
| 2012-10-11 | fixes typo in authorization code grant, ensures grantAccessToken returns a re... | Brent Shaffer | 2 | -2/+4 |
| 2012-10-11 | changing the way redirect errors handle error params - these should be in the... | Brent Shaffer | 2 | -9/+19 |
| 2012-10-10 | renames validateAuthorizeParams to validateAuthorizeRequest for consistency | Brent Shaffer | 1 | -2/+2 |
| 2012-10-10 | adds support for authorization codes in PDO storage, adds tests for this | Brent Shaffer | 6 | -9/+31 |
| 2012-10-10 | adds validation for 'code' as a supported grant type | Brent Shaffer | 1 | -3/+11 |
| 2012-10-10 | adds client_id verification for authorize request | Brent Shaffer | 1 | -1/+5 |
| 2012-10-09 | adds PDO storage and PDO tests | Brent Shaffer | 1 | -0/+87 |
| 2012-10-09 | removes invalid comment | Brent Shaffer | 1 | -2/+0 |
| 2012-10-09 | adds client credentials grant type | Brent Shaffer | 4 | -9/+47 |
| 2012-10-09 | renames TokenGrant to Grant for better semantics | Brent Shaffer | 5 | -6/+6 |
| 2012-10-09 | adds xml rendering - this has questionable usefulness | Brent Shaffer | 1 | -0/+11 |
| 2012-10-09 | addition of Access test, shuffles other tests for better naming. Fixes serve... | Brent Shaffer | 2 | -23/+34 |
| 2012-10-09 | continued test shuffle, adds a bunch more t ests | Brent Shaffer | 2 | -6/+10 |
| 2012-10-09 | adds tests for authorize requests and makes the changes associated with this | Brent Shaffer | 5 | -53/+75 |
| 2012-10-09 | general refactoring, adding tests for Authorize request | Brent Shaffer | 10 | -136/+218 |
| 2012-10-03 | moves response-related classes into a Response directory to clear the base fo... | Brent Shaffer | 9 | -57/+57 |
| 2012-10-03 | adds refresh token functionality, adds tests, adds ResponseProviderInterface ... | Brent Shaffer | 10 | -21/+100 |
| 2012-10-02 | cleans up the server class and fixes a few bugs | Brent Shaffer | 1 | -71/+72 |
| 2012-10-02 | Adds tests for UserCredentials, adds interface for objects returning an OAuth... | Brent Shaffer | 4 | -15/+47 |
| 2012-10-01 | updating GrantTypeInterface to include clientData for validating a token | Brent Shaffer | 2 | -2/+2 |
| 2012-10-01 | refactoring of the server model | Brent Shaffer | 15 | -268/+826 |
| 2012-09-25 | fixes bug in Response class, makes createFromGlobals 5.2.x compatible | Brent Shaffer | 2 | -4/+5 |
| 2012-09-24 | Moves classes into OAuth2 directory for autoloading, fills out readme, gets r... | Brent Shaffer | 19 | -403/+617 |
| 2012-09-21 | initial commit of server code | Brent Shaffer | 12 | -0/+1064 |