Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Jul 15, 2023
1 parent ca754d8 commit da6f6ce
Showing 1 changed file with 136 additions and 14 deletions.
150 changes: 136 additions & 14 deletions src/symfony/src/Resources/config/cose.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,48 +30,170 @@
->class(Manager::class);

$container
->set('webauthn.cose.algoritm.RS1')
->set('webauthn.cose.algorithm.RS1')
->class(RS1::class);
$container
->set('webauthn.cose.algoritm.RS256')
->alias('webauthn.cose.algoritm.RS1', 'webauthn.cose.algorithm.RS1')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.RS256')
->class(RS256::class);
$container
->set('webauthn.cose.algoritm.RS384')
->alias('webauthn.cose.algoritm.RS256', 'webauthn.cose.algorithm.RS256')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.RS384')
->class(RS384::class);
$container
->set('webauthn.cose.algoritm.RS512')
->alias('webauthn.cose.algoritm.RS384', 'webauthn.cose.algorithm.RS384')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.RS512')
->class(RS512::class);
$container
->alias('webauthn.cose.algoritm.RS512', 'webauthn.cose.algorithm.RS512')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algoritm.PS256')
->set('webauthn.cose.algorithm.PS256')
->class(PS256::class);
$container
->set('webauthn.cose.algoritm.PS384')
->alias('webauthn.cose.algoritm.PS256', 'webauthn.cose.algorithm.PS256')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.PS384')
->class(PS384::class);
$container
->set('webauthn.cose.algoritm.PS512')
->alias('webauthn.cose.algoritm.PS384', 'webauthn.cose.algorithm.PS384')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.PS512')
->class(PS512::class);
$container
->alias('webauthn.cose.algoritm.PS512', 'webauthn.cose.algorithm.PS512')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algoritm.ES256K')
->set('webauthn.cose.algorithm.ES256K')
->class(ES256K::class);
$container
->set('webauthn.cose.algoritm.ES256')
->alias('webauthn.cose.algoritm.ES256K', 'webauthn.cose.algorithm.ES256K')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.ES256')
->class(ES256::class);
$container
->set('webauthn.cose.algoritm.ES384')
->alias('webauthn.cose.algoritm.ES256', 'webauthn.cose.algorithm.ES256')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.ES384')
->class(ES384::class);
$container
->set('webauthn.cose.algoritm.ES512')
->alias('webauthn.cose.algoritm.ES384', 'webauthn.cose.algorithm.ES384')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.ES512')
->class(ES512::class);
$container
->alias('webauthn.cose.algoritm.ES512', 'webauthn.cose.algorithm.ES512')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algoritm.ED256')
->set('webauthn.cose.algorithm.ED256')
->class(Ed256::class);
$container
->set('webauthn.cose.algoritm.ED512')
->alias('webauthn.cose.algoritm.ED256', 'webauthn.cose.algorithm.ED256')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.ED512')
->class(Ed512::class);
$container
->set('webauthn.cose.algoritm.Ed25519ph')
->alias('webauthn.cose.algoritm.ED512', 'webauthn.cose.algorithm.ED512')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;

$container
->set('webauthn.cose.algorithm.Ed25519ph')
->class(Ed25519::class);
$container
->alias('webauthn.cose.algoritm.Ed25519ph', 'webauthn.cose.algorithm.Ed25519ph')
->deprecate(
'web-auth/webauthn-symfony-bundle',
'4.7.0',
'The "%alias_id%" service alias is deprecated, use "%service_id%" instead.'
)
;
};

0 comments on commit da6f6ce

Please sign in to comment.