Skip to content

Commit f4c0e0e

Browse files
authored
Remove old packages references (#526)
1 parent 9a6db48 commit f4c0e0e

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

src/Bundle/Resources/views/data_collector/tab/jwe/content_encryption_algorithms.html.twig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
No algorithm. You should consider the installation of the following packages or create your own
3131
algorithm:
3232
<ul>
33-
<li>web-token/jwt-encryption-algorithm-aescbc</li>
34-
<li>web-token/jwt-encryption-algorithm-aesgcm</li>
33+
<li>web-token/jwt-library</li>
3534
</ul>
3635
</td>
3736
</tr>

src/Bundle/Resources/views/data_collector/tab/jwe/key_encryption_algorithms.html.twig

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,7 @@
2929
<td colspan="3">
3030
No algorithm. Please consider the installation of the following packages or create your own algorithm:
3131
<ul>
32-
<li>web-token/jwt-encryption-algorithm-aesgcmkw</li>
33-
<li>web-token/jwt-encryption-algorithm-aeskw</li>
34-
<li>web-token/jwt-encryption-algorithm-dir</li>
35-
<li>web-token/jwt-encryption-algorithm-ecdh-es</li>
36-
<li>web-token/jwt-encryption-algorithm-pbes2</li>
37-
<li>web-token/jwt-encryption-algorithm-rsa</li>
32+
<li>web-token/jwt-library</li>
3833
</ul>
3934
</td>
4035
</tr>

src/Library/Checker/ExpirationTimeChecker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function __construct(
2424
) {
2525
if ($clock === null) {
2626
trigger_deprecation(
27-
'web-token/jwt-checker',
28-
'3.2.0',
27+
'web-token/jwt-library',
28+
'3.3.0',
2929
'The parameter "$clock" will become mandatory in 4.0.0. Please set a valid PSR Clock implementation instead of "null".'
3030
);
3131
$clock = new InternalClock();

src/Library/Checker/IssuedAtChecker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function __construct(
2424
) {
2525
if ($clock === null) {
2626
trigger_deprecation(
27-
'web-token/jwt-checker',
28-
'3.2.0',
27+
'web-token/jwt-library',
28+
'3.3.0',
2929
'The parameter "$clock" will become mandatory in 4.0.0. Please set a valid PSR Clock implementation instead of "null".'
3030
);
3131
$clock = new InternalClock();

src/Library/Checker/NotBeforeChecker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function __construct(
2424
) {
2525
if ($clock === null) {
2626
trigger_deprecation(
27-
'web-token/jwt-checker',
28-
'3.2.0',
27+
'web-token/jwt-library',
28+
'3.3.0',
2929
'The parameter "$clock" will become mandatory in 4.0.0. Please set a valid PSR Clock implementation instead of "null".'
3030
);
3131
$clock = new InternalClock();

0 commit comments

Comments
 (0)