summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2014-06-12Rename Dynamodb.php to DynamoDB.phpfauguste1-0/+0
2014-06-12DynamoDB storage : fix coding standards issuesfauguste1-97/+124
2014-06-12DynamoDB storage : Add comment and fix coding standards issuesfauguste1-56/+48
2014-06-12Add dynamodb storage supportfauguste1-0/+522
2014-06-08allow pdo options.Brett McBride1-1/+2
allow the optional fourth 'options' parameter to PDO constructor to be used
2014-05-17Merge pull request #384 from ↵Brent Shaffer2-9/+41
bshaffer/allow-auth_time-to-be-passed-in-with-user_id-parameter allows for auth time to be passed in with the user id for OpenID tokens
2014-05-17allows for auth time to be passed in with the user id for OpenID tokensBrent Shaffer2-9/+41
2014-05-08Add space between SELECT and * in JTI queryEvan Coury1-1/+1
2014-04-30case insensitive headersBrian Scaturro1-1/+3
2014-04-24Add: grantType to server based on indentifierFlorent Viel1-1/+1
If $key is not provided Server::addGrantType is called, add the grant type base on qyery string identifier for better consistency
2014-04-21addresses #373 - allows for nulling of storages in the Server classBrent Shaffer1-1/+1
2014-04-08Use mcrypt_create_iv or openssl_random_pseudo_bytes for random bytes source.Edgaras Janušauskas2-2/+10
2014-04-05fixes #292 - adds postgres tests and fixes postgres issuesBrent Shaffer1-2/+3
2014-04-05fixes #323 - client_id is not required to be returned when calling ↵Brent Shaffer2-2/+2
getAccessToken
2014-04-05fixes #301 - ensures newlines are replaced as expected in urlSafeB64Encode ↵Brent Shaffer1-1/+1
function
2014-04-05fixes #349 - adds requestHasToken methodBrent Shaffer1-0/+13
2014-04-02addresses #363 - temporary fix, but this will require more thought later, as ↵Brent Shaffer1-1/+12
custom headers require a subclass
2014-04-02fixes EncryptionInterface typehinting in JwtBearer grant type constructorBrent Shaffer1-1/+2
2014-03-31fixes #361 - only requires 'id_token' column if the 7th parameter is setBrent Shaffer1-0/+20
2014-03-31follows interface for ->decode() methodBrent Shaffer1-1/+1
2014-03-23Added `getQuerystringIdentifier()` to the GrantType interfacePatrick Hindmarsh1-0/+1
2014-03-22adds php 5.6 and HHVM to .travis.ymlBrent Shaffer3-8/+11
disables mongo.so installation (we skip mongo tests anyway) misc fixes for HHVM - changes algos to constants (integers) for php 5.4-5.6 - casts apache_request_headers() to array - fixes array_walk strangeness
2014-03-19fixing JWT casingBrent Shaffer1-5/+5
2014-03-19removes openid-specific code from the main object classesBrent Shaffer4-19/+8
2014-03-19Adds tests for OpenID storages and grant typesBrent Shaffer7-8/+38
2014-03-19OPENID-CONNECT - fixes old tests, adds tests and makes them pass, moves ↵Brent Shaffer12-91/+172
UserClaims into OpenID dir
2014-03-19first iteration of refactoringBrent Shaffer15-32/+304
2014-03-19Add forgotten UserClaimsInterface.Bojan Zivanovic1-0/+29
2014-03-19Add a UserInfo controller for the UserInfo endpoint.Bojan Zivanovic3-0/+146
2014-03-19Add support for user claims.Bojan Zivanovic5-6/+35
2014-03-19The publicKeyStorage parameter must never be null.Bojan Zivanovic1-1/+1
2014-03-19Reduce the list of reserved scopes.Bojan Zivanovic1-2/+2
2014-03-19Include the refresh token in the OpenID Connect code grant type response ↵Bojan Zivanovic1-1/+8
only if the offline_access scope has been requested and granted.
2014-03-19Code cleanup based on bshaffer's review.Bojan Zivanovic3-3/+5
2014-03-19Introduce the concept of reserved scopes, for better DX.Bojan Zivanovic1-1/+26
2014-03-19Remove the id_token storage, store the id_token with the authorization code ↵Bojan Zivanovic14-101/+39
when needed. Have the code grant type return an id_token when found.
2014-03-19Fix id_token generation when allow_implicit is FALSE.Bojan Zivanovic1-5/+5
2014-03-19Pass the issuer to the id_token response type.Bojan Zivanovic1-1/+1
2014-03-19Add urlSafeB64Encode and urlSafeB64Decode to the EncryptionInterface.Bojan Zivanovic1-0/+2
2014-03-19Add an empty TokenIdTokenInterface. Should fix the tests.Bojan Zivanovic3-2/+9
2014-03-19Initial reimplementation (storage, response types).Bojan Zivanovic8-124/+178
2014-03-19iteration of jsacksick's openid PRBrent Shaffer8-61/+158
2014-03-19Open ID connect implementation: initial commit.jsacksick6-1/+121
2014-03-11Silence open_basedir error on file_existsShaun Simmons1-1/+1
2014-02-27fixes #233 - allows token in methods where the request body is allowedBrent Shaffer1-3/+3
2014-02-27fixes #189 - possible reason for errors when using sqlite storage - now you ↵Brent Shaffer1-1/+4
can pass in a string DSN with no other parameters (yay)
2014-02-27Merge pull request #336 from ruimarinho/patch-1Brent Shaffer1-1/+1
Fixed Redis delete command
2014-02-27adds tests for JwtBearer storageBrent Shaffer3-4/+27
2014-02-19Fixed Redis delete commandRui Marinho1-1/+1
\Predis\Client uses #del instead of #delete.
2014-02-18Merge pull request #333 from lgelfan/developBrent Shaffer1-1/+1
update Storage/Pdo