Skip to content

Commit ad4cf7f

Browse files
authored
Merge pull request firebase#52 from panigrc/fix/oauth2-client-version
Allow league/oauth2-client ^2.0
2 parents 645b841 + a588a51 commit ad4cf7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"keycloak"
1919
],
2020
"require": {
21-
"league/oauth2-client": "^2.0 <2.3.0",
21+
"league/oauth2-client": "^2.0",
2222
"firebase/php-jwt": "~4.0|~5.0"
2323
},
2424
"require-dev": {

Diff for: test/src/Provider/KeycloakTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function testEncryptionKeyPathFails()
132132

133133
public function testScopes()
134134
{
135-
$scopeSeparator = ',';
135+
$scopeSeparator = ' ';
136136
$options = ['scope' => [uniqid(), uniqid()]];
137137
$query = ['scope' => implode($scopeSeparator, $options['scope'])];
138138
$url = $this->provider->getAuthorizationUrl($options);

0 commit comments

Comments
 (0)