Skip to content

Commit 385c46a

Browse files
authored
Merge pull request #49 from pdsinterop/feature/update-oauth
Feature/update oauth
2 parents 6ce5acf + d50cdc8 commit 385c46a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"ext-openssl": "*",
2727
"laminas/laminas-diactoros": "^2.8",
2828
"lcobucci/jwt": "^4.1",
29-
"league/oauth2-server": "^8.3.5",
29+
"league/oauth2-server": "^8.5.5",
3030
"web-token/jwt-core": "^2.2"
3131
},
3232
"require-dev": {

src/TokenGenerator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ public function addIdTokenToResponse($response, $clientId, $subject, $nonce, $pr
190190
if (isset($body['error'])) {
191191
return $response;
192192
}
193+
193194
$accessToken = $this->generateAccessToken($clientId, $subject);
194195
$accessToken = $this->bindDpop($dpop, $accessToken);
195196
$accessToken = $this->signToken($accessToken);

0 commit comments

Comments
 (0)