Skip to content

Commit

Permalink
Use beste/clock 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Nov 26, 2022
1 parent fede2e3 commit 7885c1e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"ext-openssl": "*",
"fig/http-message-util": "^1.1.5",
"guzzlehttp/guzzle": "^7.5",
"beste/clock": "^2.3.1",
"beste/clock": "^3.0",
"lcobucci/jwt": "^4.2.1",
"psr/cache": "^1.0|^2.0|^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/JWT/Action/CreateCustomToken/WithLcobucciJWT.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Lcobucci\JWT\Configuration;
use Lcobucci\JWT\Signer\Key\InMemory;
use Lcobucci\JWT\Signer\Rsa\Sha256;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;
use Throwable;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/JWT/Action/FetchGooglePublicKeys/WithGuzzle.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Kreait\Firebase\JWT\Contract\Keys;
use Kreait\Firebase\JWT\Error\FetchingGooglePublicKeysFailed;
use Kreait\Firebase\JWT\Keys\ExpiringKeys;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;

use const JSON_THROW_ON_ERROR;

Expand Down
2 changes: 1 addition & 1 deletion src/JWT/Action/FetchGooglePublicKeys/WithPsr6Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Kreait\Firebase\JWT\Contract\Keys;
use Kreait\Firebase\JWT\Error\FetchingGooglePublicKeysFailed;
use Psr\Cache\CacheItemPoolInterface;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/JWT/Action/VerifyIdToken/WithLcobucciJWT.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use Lcobucci\JWT\Validation\ConstraintViolation;
use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
use Lcobucci\JWT\Validation\Validator;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;
use Throwable;

use function assert;
Expand Down
2 changes: 1 addition & 1 deletion src/JWT/Action/VerifySessionCookie/WithLcobucciJWT.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use Lcobucci\JWT\Validation\ConstraintViolation;
use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
use Lcobucci\JWT\Validation\Validator;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;
use Throwable;

use function assert;
Expand Down
2 changes: 1 addition & 1 deletion src/JWT/GooglePublicKeys.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Kreait\Firebase\JWT\Action\FetchGooglePublicKeys\WithGuzzle;
use Kreait\Firebase\JWT\Contract\Expirable;
use Kreait\Firebase\JWT\Contract\Keys;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;

final class GooglePublicKeys implements Keys
{
Expand Down
2 changes: 1 addition & 1 deletion tests/JWT/Util/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Lcobucci\JWT\Signer\None;
use Lcobucci\JWT\Signer\Rsa\Sha256;
use Lcobucci\JWT\Token\Builder;
use StellaMaris\Clock\ClockInterface;
use Psr\Clock\ClockInterface;

final class Token
{
Expand Down

0 comments on commit 7885c1e

Please sign in to comment.