<?xml version="1.0" ?>

<container xmlns="http://symfony.com/schema/dic/services"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

    <services>
        <service id="lexik_jwt_authentication.check_config_command" class="Lexik\Bundle\JWTAuthenticationBundle\Command\CheckConfigCommand">
            <argument type="service" id="lexik_jwt_authentication.key_loader" />
            <argument type="string">%lexik_jwt_authentication.encoder.signature_algorithm%</argument> <!-- signature algorithm -->
            <tag name="console.command" command="lexik:jwt:check-config" />
        </service>

        <service id="lexik_jwt_authentication.migrate_config_command" class="Lexik\Bundle\JWTAuthenticationBundle\Command\MigrateConfigCommand">
            <argument type="service" id="lexik_jwt_authentication.key_loader" />
            <argument type="string">%lexik_jwt_authentication.pass_phrase%</argument>
            <argument type="string">%lexik_jwt_authentication.encoder.signature_algorithm%</argument>
            <tag name="console.command" command="lexik:jwt:migrate-config" />
        </service>

        <service id="lexik_jwt_authentication.enable_encryption_config_command" class="Lexik\Bundle\JWTAuthenticationBundle\Command\EnableEncryptionConfigCommand">
            <argument type="service" id="Jose\Component\Core\AlgorithmManagerFactory" on-invalid="null" />
            <tag name="console.command" command="lexik:jwt:enable-encryption" />
        </service>

        <service id="lexik_jwt_authentication.generate_token_command" class="Lexik\Bundle\JWTAuthenticationBundle\Command\GenerateTokenCommand" public="true">
            <argument type="service" id="lexik_jwt_authentication.jwt_manager" />
            <argument type="collection" /> <!-- user providers -->
            <tag name="console.command" command="lexik:jwt:generate-token" />
        </service>

        <service id="lexik_jwt_authentication.generate_keypair_command" class="Lexik\Bundle\JWTAuthenticationBundle\Command\GenerateKeyPairCommand">
            <argument type="service" id="filesystem" />
            <argument />
            <argument />
            <argument />
            <argument />
            <tag name="console.command" command="lexik:jwt:generate-keypair" />
        </service>
    </services>

</container>
