forked from robiningelbrecht/drush-gdpr-dumper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 944 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "druidfi/drush-gdpr-dumper",
"description": "A drop-in replacement for mysqldump that optionally sanitizes DB fields for better GDPR conformity.",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Druid.fi",
"homepage": "https://github.com/druidfi",
"role": "Maintainer"
},
{
"name": "Robin Ingelbrecht",
"homepage": "https://github.com/robiningelbrecht"
},
{
"name": "Marko Korhonen",
"homepage": "https://github.com/back-2-95"
}
],
"require": {
"php": "^8.1",
"druidfi/gdpr-mysqldump": "^1.2.6",
"drush/drush": "^13",
"drupal/core-recommended": "^10.3 || ^11",
"webflo/drupal-finder": "^1.3.0"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"require-dev": {
"webflo/drupal-finder": "^1.3"
}
}