# Install Raptor CDP

> For the complete documentation index, see [llms.txt](https://doc.ibexa.co/en/6.0/llms.txt).

Installation of standalone Raptor CDP package.

Editions: Experience

There are three steps required to install Raptor CDP. First, you need to register your Raptor CDP account, then you can download a CDP package and update the configuration.

## Register in Raptor CDP dashboard

If you decide to acquire Raptor CDP, contact your sales representative to receive a registration link to Raptor CDP. After registration, you get access to a separate instance where you can find data required for configuring, activating, and using this feature.

## Install CDP package

Raptor CDP comes in an additional package that is opt-in and needs to be downloaded separately.

To download it run:

```bash
composer require ibexa/cdp
```

Symfony Flex installs and activates the package. After an installation process is finished, go to `config/packages/security.yaml` and uncomment `ibexa_cdp` rule.

```yaml
security:
    firewalls:
        # ...
        ibexa_cdp:
            request_matcher: Ibexa\Cdp\Security\RequestMatcher
            custom_authenticators:
                - 'Ibexa\Cdp\Security\CdpRequestAuthenticator'
            stateless: true
```

Now, you can configure Raptor CDP. Go to [the activation documentation](https://doc.ibexa.co/en/6.0/raptor_cdp/raptor_cdp_activation/raptor_cdp_activation/index.md) and follow the steps.
