PHPackages                             cerpus/gdpr - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. cerpus/gdpr

AbandonedArchivedProject[Utility &amp; Helpers](/categories/utility)

cerpus/gdpr
===========

A package that helps with implementing GDPR compliance in the EdLib ecosystem

0.5.2(5y ago)0238proprietaryPHPPHP &gt;=7.0

Since Mar 13Pushed 4y ago1 watchersCompare

[ Source](https://github.com/cerpus/php-gdpr)[ Packagist](https://packagist.org/packages/cerpus/gdpr)[ RSS](/packages/cerpus-gdpr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (16)Versions (16)Used By (0)

\#GDPR helper service This is a Laravel package to help implement GDPR compliance in a system

Installation
------------

[](#installation)

```
composer require cerpus/gdpr
```

If you are running on Laravel 5.4 or less you must add the service provider to `config/app.php`.

```
'providers' => [
    ...
    Cerpus\Gdpr\GdprServiceProvider::class,

];
```

In Laravel 5.5 and up the package will auto register.

Publish artifacts to your app.

```
php artisan vendor:publish --provider="Cerpus\Gdpr\GdprServiceProvider"
```

This will publish the config file to `config/gdpr.php`. The GdprService will have a default deletion file, and you have to make a class that implements the `Cerpus\Gdpr\Contracts\GdprDeletionContract` interface. Change the `config/gdpr.php` file to point to your implementation.

```
