summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2023-06-16feat: upgrade php-jwt version (#1049)Brent Shaffer1-5/+5
2022-05-31fix: PHP 8.1 deprecation error (#1021)v1.12.1Witold Wasiczko1-0/+11
2022-04-19chore: migrate tests, drop support for PHP 7.0 and below (#1018)v1.12.0Brent Shaffer12-193/+129
2018-12-04fixes incorrect parameter type for count in php72 (#953)v1.11.1Brent Shaffer1-1/+22
2017-12-06Remove 2 slashes from sqlite DSN for Windows (#898)Andrey Filippov2-4/+6
2017-12-01Callable for customizing JWT payload (#894)Brent Shaffer1-2/+19
2017-11-20Merge headers with server global header values (#891)Brent Shaffer1-0/+18
2017-11-15v1.10.0 (#889)v1.10.0Brent Shaffer27-28/+102
2017-01-07Add mongo db (#790)Brent Shaffer2-12/+93
* add mongodb extension for php 7.x to travis * removes mongodb library for php5 from travis * removes HHVM from travis
2016-12-23no access token supplied to resource controller results in emptry request ↵Brent Shaffer1-0/+1
body (#759)
2016-12-23Fix "redirect_uri_mismatch" for URIs with encoded characters (#776)Mathieu Rochette2-0/+23
* add test to showcase a bug when comparaing redirect_uri in grant type "code" * fix redirect_uri comparaison with grant type "code"
2016-12-23RFC6750 compatibility (#784)Piotr G1-1/+1
2016-07-27Issue 725 (#729)Brent Shaffer1-3/+23
* ensures unsetAccessToken and unsetRefreshToken return a bool
2016-07-15Fix UserClaims for CodeIdToken (#749)Brent Shaffer1-0/+91
Remove dereferencing for support PHP 5.3 adds tests
2016-01-12Fixing minor typo in Implicit grant type testKenneth Shaw1-1/+1
2016-01-12Fix for #663 and Test caseMaks2-0/+20
2015-12-14Add test data for CouchbaseDB and MongoAndrey Filippov1-4/+8
2015-10-07add isPublicClient tests and fixes resulting bugsBrent Shaffer1-0/+23
2015-08-27resolves conflicts for firebase encryption classBrent Shaffer1-0/+102
2015-08-27Merge pull request #586 from phindmarsh/token-revokeBrent Shaffer3-0/+180
Added support for revoking tokens
2015-08-27skipping all dynamodb tests in travisBrent Shaffer1-1/+1
2015-08-26Added support for revoking tokensPatrick Hindmarsh3-0/+180
Implementation follows the Draft RFC7009 OAuth 2.0 Token Revocation. Essentially adds a unsetAccessToken method to all the storage objects, and exposes a revoke endpoint on controllers. The only interesting thing is the ResponseType\AccessToken::revokeToken() method which has to check all token types if the specified type doesn't exist. Maintains BC with v1.x by commenting out the AccessToken interface methods, and annotated an @todo to implement these in 2.x. Throws a \RuntimeException if storage/response objects don't support the interface
2015-05-21Merge pull request #593 from bshaffer/php-cs-fixerBrent Shaffer6-18/+11
runs php-cs-fixer
2015-05-21fixes #591 - adds jtiBrent Shaffer1-0/+2
2015-05-21runs php-cs-fixerBrent Shaffer6-18/+11
- using the command "php-cs-fixer fix . --fixers=-phpdoc_params"
2015-05-10Added FirebaseJwt bridge to allow firebase/php-jwt to be used.F211-0/+102
2015-04-24adds tests and server integration for new refresh token configBrent Shaffer2-1/+25
2015-04-24Merge pull request #569 from phindmarsh/jwt-patch-bcBrent Shaffer1-0/+31
Alternative implementation of JWT lib
2015-04-23Updated JWT lib to address #564Patrick Hindmarsh1-0/+31
An alternate patch that maintains backwards compatibility with existing interfaces, but is unsafe for users who call JWT::decode themselves without passing the allowed arguments array.
2015-04-22adds 'code id-token' testsBrent Shaffer1-0/+91
2015-04-22fixes Couchbase tests to not throw floating point exception 8Brent Shaffer1-11/+21
2015-03-25Merge pull request #509 from djhunx/fix-#505-dynamodb-value-must-not-be-emptyBrent Shaffer4-0/+56
Fix #505 dynamodb value must not be empty
2015-03-04fixes #505 - value must not be empty error when using dynamodb storage.jun4-0/+56
Adding test for dynamodb storage. Default scope should be null when none is set in the database. Removing immediate return true in dynamodb test.
2015-03-03cleans up postgres in test bootstrap / whitespaceBrent Shaffer1-4/+7
2015-03-03Add UserClaimsInterface to Cassandra Storage enginefauguste1-1/+5
2015-03-03Add PublicKeyInterface to Cassandra Storage enginefauguste1-0/+6
2014-10-07Make validateAuthorizeRequest available for POST in addition to GETPaul Statezny1-0/+10
Allow client_id, redirect_uri, response_type, and state to come from either GET or POST params. Port modified `get` method from HttpFoundation Request and add tests.
2014-10-07order does not matter for multi-valued response types - see #452Brent Shaffer3-46/+53
2014-10-07Fix for token id_token combination as per ↵Nathaniel Marrin3-12/+43
http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html#Combinations matching the sample authorization request from the same source and section rename TokenIdToken to IdTokenToken
2014-09-16Rename JWT claims for JWT Access Tokens to better match the claims provided ↵Jared King1-1/+27
by the spec
2014-09-03Merge pull request #437 from bshaffer/issue-338-rename-crypto-to-jwtBrent Shaffer3-38/+38
*** BC BREAKING *** renames CryptoToken to JwtAccessToken and renames use_crypto_tokens to use_jwt_access_tokens
2014-08-28When testing Couchbase connection now use a CouchbaseException as that is ↵Tom Park1-1/+1
what will be thrown
2014-08-28Fixed some issues with Couchbase storage and added tests for the storage typeTom Park2-0/+79
2014-08-22adds tests for #442, fixes #441Brent Shaffer1-0/+12
2014-08-12skip DynamoDB if it takes longer than 30 secondsBrent Shaffer1-4/+15
2014-08-12renames CryptoToken to JwtAccessToken and renames use_crypto_tokens to ↵Brent Shaffer3-38/+38
use_jwt_access_tokens
2014-07-31Fixes: State retrieval in OpenID AuthorizationController and test for ↵Anže Valher1-0/+156
Controller, #430
2014-07-11Merge pull request #404 from dallasvogels/issue386Brent Shaffer1-2/+2
addresses #386, renamed error name for malformed/expired tokens
2014-07-10Merge pull request #415 from bshaffer/add-dynamodb-support-to-travisBrent Shaffer3-59/+161
testing out dynamodb support in travis.ci
2014-07-10testing out dynamodb support in travis.ciBrent Shaffer3-59/+161