Skip to content

Commit 7885c1e

Browse files
committed
Use beste/clock 3.0
1 parent fede2e3 commit 7885c1e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"ext-openssl": "*",
2424
"fig/http-message-util": "^1.1.5",
2525
"guzzlehttp/guzzle": "^7.5",
26-
"beste/clock": "^2.3.1",
26+
"beste/clock": "^3.0",
2727
"lcobucci/jwt": "^4.2.1",
2828
"psr/cache": "^1.0|^2.0|^3.0"
2929
},

src/JWT/Action/CreateCustomToken/WithLcobucciJWT.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Lcobucci\JWT\Configuration;
1313
use Lcobucci\JWT\Signer\Key\InMemory;
1414
use Lcobucci\JWT\Signer\Rsa\Sha256;
15-
use StellaMaris\Clock\ClockInterface;
15+
use Psr\Clock\ClockInterface;
1616
use Throwable;
1717

1818
/**

src/JWT/Action/FetchGooglePublicKeys/WithGuzzle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Kreait\Firebase\JWT\Contract\Keys;
1313
use Kreait\Firebase\JWT\Error\FetchingGooglePublicKeysFailed;
1414
use Kreait\Firebase\JWT\Keys\ExpiringKeys;
15-
use StellaMaris\Clock\ClockInterface;
15+
use Psr\Clock\ClockInterface;
1616

1717
use const JSON_THROW_ON_ERROR;
1818

src/JWT/Action/FetchGooglePublicKeys/WithPsr6Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Kreait\Firebase\JWT\Contract\Keys;
1010
use Kreait\Firebase\JWT\Error\FetchingGooglePublicKeysFailed;
1111
use Psr\Cache\CacheItemPoolInterface;
12-
use StellaMaris\Clock\ClockInterface;
12+
use Psr\Clock\ClockInterface;
1313

1414
/**
1515
* @internal

src/JWT/Action/VerifyIdToken/WithLcobucciJWT.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
use Lcobucci\JWT\Validation\ConstraintViolation;
2929
use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
3030
use Lcobucci\JWT\Validation\Validator;
31-
use StellaMaris\Clock\ClockInterface;
31+
use Psr\Clock\ClockInterface;
3232
use Throwable;
3333

3434
use function assert;

src/JWT/Action/VerifySessionCookie/WithLcobucciJWT.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
use Lcobucci\JWT\Validation\ConstraintViolation;
2929
use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
3030
use Lcobucci\JWT\Validation\Validator;
31-
use StellaMaris\Clock\ClockInterface;
31+
use Psr\Clock\ClockInterface;
3232
use Throwable;
3333

3434
use function assert;

src/JWT/GooglePublicKeys.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Kreait\Firebase\JWT\Action\FetchGooglePublicKeys\WithGuzzle;
1212
use Kreait\Firebase\JWT\Contract\Expirable;
1313
use Kreait\Firebase\JWT\Contract\Keys;
14-
use StellaMaris\Clock\ClockInterface;
14+
use Psr\Clock\ClockInterface;
1515

1616
final class GooglePublicKeys implements Keys
1717
{

tests/JWT/Util/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Lcobucci\JWT\Signer\None;
1313
use Lcobucci\JWT\Signer\Rsa\Sha256;
1414
use Lcobucci\JWT\Token\Builder;
15-
use StellaMaris\Clock\ClockInterface;
15+
use Psr\Clock\ClockInterface;
1616

1717
final class Token
1818
{

0 commit comments

Comments
 (0)