Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0d50e5e
Adding in an exception for NotAuthorizedException, thrown by Cognito …
bclarkicc Apr 15, 2020
e23b33f
Adding in the LimitExceededException
bclarkicc Jul 9, 2020
4090d0d
Correcting an incorrectly named exception class/file
bclarkicc Jul 29, 2020
497d6f7
Changing some exception messages to be a bit more descriptive
bclarkicc Jul 29, 2020
3c4f400
Merge pull request #1 from InternationalCodeCouncil/exceptions
bclarkicc Jul 30, 2020
b0025bd
update composer
Mar 22, 2021
0c2daa5
Merge pull request #2 from InternationalCodeCouncil/update-composer
friskit Mar 23, 2021
bc2a67b
Adding in new Exception
bclarkicc Jun 27, 2022
e092ddc
Merge pull request #3 from InternationalCodeCouncil/SSO-49-Lambda-Rework
bclarkicc Jun 28, 2022
51f5b1a
checks
nstankov-bg Aug 1, 2022
60573da
.
nstankov-bg Aug 1, 2022
5a08ef4
Updating faker dependencies to allow for compatibility with PHP 8.1
bclarkicc Aug 2, 2022
95b4802
Updating the phpunit dependency to a slightly newer version
bclarkicc Aug 2, 2022
6513d87
Making the createFromCognitoException method a bit more robust so tha…
bclarkicc May 15, 2023
e7670b3
Merge pull request #4 from InternationalCodeCouncil/exception-handling
bclarkicc May 15, 2023
9489d38
removed the older jwt-signature and jwt-signature-algorithm-rsa. Intr…
infobeans-vishalmene Jul 24, 2025
2c7b0f6
Merge pull request #5 from InternationalCodeCouncil/sso-357-aws-cogni…
bclarkicc Jul 28, 2025
f83ba03
Removing GitHub Actions checks, these should just run on the cognito-…
bclarkicc Jul 28, 2025
9cd2d5b
Merge pull request #6 from InternationalCodeCouncil/actions-removal
bclarkicc Jul 28, 2025
bbc05df
handle deprication case for php 8.3
infobeans-vishalmene Aug 1, 2025
8019f48
Merge pull request #7 from InternationalCodeCouncil/corrected-deprica…
bclarkicc Aug 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,4 @@ Copyright
pmill/aws-cognito
Copyright (c) 2017 pmill ([email protected])
All rights reserved.

6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"require": {
"aws/aws-sdk-php": "^3.26",
"web-token/jwt-signature": "^1.0"
"web-token/jwt-framework": "^3.4"
},
"autoload": {
"psr-4": {
Expand All @@ -21,7 +21,7 @@
}
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"fzaninotto/faker": "^1.8"
"fakerphp/faker": "^1.20",
"phpunit/phpunit": "^8.0 || ^9.0"
}
}
Loading