https://github.com/itk-dev/gdpr-bundle
https://github.com/itk-dev/gdpr-bundle
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itk-dev/gdpr-bundle
- Owner: itk-dev
- Created: 2018-03-12T21:13:52.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T09:54:30.000Z (about 2 years ago)
- Last Synced: 2025-02-13T08:17:29.611Z (about 1 year ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.