We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed0555 commit 0a1d5a6Copy full SHA for 0a1d5a6
Services/Client.php
@@ -17,4 +17,15 @@ public static function getClient()
17
]
18
]);
19
}
20
+
21
+ public static function getServerClient()
22
+ {
23
+ return new \GuzzleHttp\Client([
24
+ 'base_uri' => config('openid.server'),
25
+ 'headers' => [
26
+ 'ClientId' => config('openid.client.id'),
27
+ 'ClientSecret' => config('openid.client.secret')
28
+ ]
29
+ ]);
30
+ }
31
composer.json
@@ -1,7 +1,7 @@
1
{
2
"name": "univicosa/laravel-openid-client",
3
"description": "OpenId Client",
4
- "version": "0.7.3",
+ "version": "0.7.4",
5
"authors": [
6
7
"name": "Felipe da Silva Pinheiro",
0 commit comments