Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deps/ecs rector dependencies #535

Merged
merged 4 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@
"ext-mbstring": "*",
"ext-openssl": "*",
"brick/math": "^0.12",
"paragonie/constant_time_encoding": "^2.6",
"paragonie/sodium_compat": "^1.20",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"spomky-labs/pki-framework": "^1.1",
Expand All @@ -67,11 +65,11 @@
"ext-curl": "*",
"ext-gmp": "*",
"ext-sodium": "*",
"bjeavons/zxcvbn-php": "^1.3",
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.27",
"matthiasnoback/symfony-config-test": "^5.0",
"nikic/php-parser": "^4.18",
"paragonie/sodium_compat": "^1.20",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.3",
Expand Down Expand Up @@ -100,7 +98,6 @@
"web-token/jwt-experimental": "self.version"
},
"suggest": {
"bjeavons/zxcvbn-php": "Adds key quality check for oct keys.",
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens.",
"symfony/var-dumper": "Used to show data on the debug toolbar.",
"spomky-labs/aes-key-wrap": "To enable AES Key Wrap algorithm."
Expand Down
2 changes: 1 addition & 1 deletion deptrac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ parameters:
collectors:
- { type: className, regex: '^Symfony\\' }
- { type: className, regex: '^SpomkyLabs\\Pki\\' }
- { type: className, regex: '^ParagonIE\\' }
- { type: className, regex: '^ParagonIE\\Sodium\\' }
- { type: className, regex: '^Psr\\EventDispatcher\\' }
- { type: className, regex: '^Psr\\Clock\\' }
- { type: className, regex: '^Brick\\Math\\' }
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A128GCMKWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A128GCMKWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A128KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A128KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A192GCMKWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A192GCMKWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A192KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A192KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A256GCMKWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A256GCMKWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/A256KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class A256KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/ECDHESA128KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class ECDHESA128KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -179,6 +181,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand Down Expand Up @@ -216,6 +219,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/ECDHESA192KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class ECDHESA192KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -179,6 +181,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand Down Expand Up @@ -216,6 +219,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/ECDHESA256KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class ECDHESA256KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -179,6 +181,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand Down Expand Up @@ -216,6 +219,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/ECDHESBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class ECDHESBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -251,6 +253,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand Down Expand Up @@ -288,6 +291,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
4 changes: 4 additions & 0 deletions performance/JWE/PBES2HS256A128KWBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Jose\Performance\JWE;

use Override;
use PhpBench\Benchmark\Metadata\Annotations\Groups;
use PhpBench\Benchmark\Metadata\Annotations\Revs;

Expand All @@ -13,6 +14,7 @@
*/
final class PBES2HS256A128KWBench extends EncryptionBench
{
#[Override]
public function dataHeadersAndAlgorithms(): array
{
return [
Expand Down Expand Up @@ -90,6 +92,7 @@ public function dataPrivateKeys(): array
];
}

#[Override]
public function dataRecipientPublicKeys(): array
{
return [
Expand All @@ -102,6 +105,7 @@ public function dataRecipientPublicKeys(): array
];
}

#[Override]
protected function getAAD(): ?string
{
return 'A,B,C,D';
Expand Down
Loading