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 5162a40 commit 5f4bbb3Copy full SHA for 5f4bbb3
tests/ClientTest.php
@@ -2,6 +2,7 @@
2
3
use Carbon\Carbon;
4
use Carbon\CarbonImmutable;
5
+use Lcobucci\JWT\Encoding\ChainedFormatter;
6
use Lcobucci\JWT\Encoding\JoseEncoder;
7
use Lcobucci\JWT\Signer\Hmac\Sha256;
8
use Lcobucci\JWT\Signer\Key\InMemory;
@@ -32,6 +33,8 @@ protected function getEnvironmentSetUp($app): void
32
33
'audience' => 'myappaud',
34
'issuer' => 'myappiss',
35
'lifetime' => 900,
36
+ 'signer' => \Lcobucci\JWT\Signer\Hmac\Sha256::class,
37
+ 'chained_formatter' => ChainedFormatter::default(),
38
]]);
39
}
40
@@ -132,4 +135,4 @@ public function testQuickGet()
132
135
)
133
136
);
134
137
-}
138
+}
0 commit comments