Skip to content

Commit

Permalink
Merge pull request #52 from panigrc/fix/oauth2-client-version
Browse files Browse the repository at this point in the history
Allow league/oauth2-client ^2.0
  • Loading branch information
mstefan21 committed Jul 22, 2022
2 parents 645b841 + a588a51 commit ad4cf7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"keycloak"
],
"require": {
"league/oauth2-client": "^2.0 <2.3.0",
"league/oauth2-client": "^2.0",
"firebase/php-jwt": "~4.0|~5.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion test/src/Provider/KeycloakTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function testEncryptionKeyPathFails()

public function testScopes()
{
$scopeSeparator = ',';
$scopeSeparator = ' ';
$options = ['scope' => [uniqid(), uniqid()]];
$query = ['scope' => implode($scopeSeparator, $options['scope'])];
$url = $this->provider->getAuthorizationUrl($options);
Expand Down

0 comments on commit ad4cf7f

Please sign in to comment.