An open API service indexing awesome lists of open source software.

https://github.com/itk-dev/gdpr-bundle


https://github.com/itk-dev/gdpr-bundle

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# GDPR Bundle

## Installation

```sh
composer require itk-dev/gdpr-bundle dev-master
```

Enable the bundle in `app/AppKernel.php`:

```php
public function registerBundles() {
$bundles = [
// …
new ItkDev\GDPRBundle\ItkDevGDPRBundle(),
];
// …
}
```

Add routes in `app/config/routing.yml', say:

```yaml
gdpr_bundle:
resource: '@ItkDevGDPRBundle/Resources/config/routing.xml'
prefix: /gdpr
```

Check default bundle configuration

```sh
bin/console config:dump-reference ItkDevGDPRBundle
```

If the default configuration does not match your setup it can be
modified in `app/config/config.yml`.