From 7fd41c1276af5010a2dc0c40945227b477ca49d2 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 21 Jun 2021 16:41:30 +0300 Subject: [PATCH 1/2] use DrupalFinder\DrupalFinder; --- src/Sql/GdprSqlTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sql/GdprSqlTrait.php b/src/Sql/GdprSqlTrait.php index b854c18..840b194 100644 --- a/src/Sql/GdprSqlTrait.php +++ b/src/Sql/GdprSqlTrait.php @@ -2,7 +2,7 @@ namespace Drupal\gdpr_dumper\Sql; -use Drupal\Console\Core\Utils\DrupalFinder; +use DrupalFinder\DrupalFinder; /** * Trait GdprSqlTrait From 882fcc511bb660b2b9d8071f1a22df0461595763 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 21 Jun 2021 16:52:16 +0300 Subject: [PATCH 2/2] Require druidfi/gdpr-mysqldump --- README.md | 2 +- composer.json | 22 ++++++---------------- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 7af4fdb..67c8ebe 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ be GDPR compliant YO! This module can be configured by editing the `gdpr_dumper.settings.yml` [file](https://github.com/robiningelbrecht/gdpr-dumper/blob/master/config/install/gdpr_dumper.settings.yml). -[machbarmacher/gdpr-dump](https://github.com/machbarmacher/gdpr-dump) contains more info about +[druidfi/gdpr-mysqldump](https://github.com/druidfi/gdpr-mysqldump) contains more info about the **gdpr-expressions** and **gdpr-replacement** options. The provided yml file expects the same structure as explained in the readme above. diff --git a/composer.json b/composer.json index 5bd847d..939a0fe 100644 --- a/composer.json +++ b/composer.json @@ -10,23 +10,13 @@ "name": "Robin Ingelbrecht", "homepage": "https://github.com/robiningelbrecht", "role": "Maintainer" + }, + { + "name": "Marko Korhonen", + "homepage": "https://github.com/back-2-95" } ], "require": { - "machbarmacher/gdpr-dump": "^1.0.0" - }, - "repositories": [ - { - "type": "package", - "package": { - "name": "machbarmacher/gdpr-dump", - "version": "1.0.0", - "source": { - "url": "https://github.com/machbarmacher/gdpr-dump.git", - "type": "git", - "reference": "master" - } - } - } - ] + "druidfi/gdpr-mysqldump": "dev-main" + } }