itk-dev/gdpr-bundle

Installs: 31

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 5

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-main 2018-03-13 09:02 UTC

This package is auto-updated.

Last update: 2024-04-29 10:13:00 UTC


README

Installation

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

Enable the bundle in app/AppKernel.php:

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

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

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

Check default bundle configuration

bin/console config:dump-reference ItkDevGDPRBundle

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