# Symfony Bundle

This framework provides a Symfony bundle that will help you to use the components within your Symfony application.

## With Symfony Flex

The bundle is automatically detected when Flex is available.

{% hint style="info" %}
As the recipes are third party ones not officially supported by Symfony, you will be asked to execute the recipe or not. When applied, the recipes will prompt a message such as `Web Token Framework is ready.`
{% endhint %}

## Without Symfony Flex

If you don't use Symfony Flex, you must register the bundle manually.

{% code title="config/bundles.php" %}

```php
<?php

return [
    //...
    Jose\Bundle\JoseFramework\JoseFrameworkBundle::class => ['all' => true],
];

```

{% endcode %}

## Bundle Features

The bundle capabilities will depend on the components installed in your application.

* [Algorithm Management](/3.2/the-symfony-bundle/algorithm-management.md)
* [Header and Claim Checkers](/3.2/the-symfony-bundle/header-and-claim-checker-management.md)
* [Keys and key sets](/3.2/the-symfony-bundle/key-and-key-set-management.md)
* [Signed tokens](/3.2/the-symfony-bundle/signed-tokens.md)
* [Encrypted tokens](/3.2/the-symfony-bundle/encrypted-tokens.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://web-token.spomky-labs.com/3.2/the-symfony-bundle/symfony-bundle.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
