forked from machbarmacher/gdpr-dump
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.04 KB
/
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
39
40
41
42
43
44
45
46
47
{
"name": "uncinc/gdpr-dump",
"description": "A drop-in replacement for mysqldump that optionally sanitizes DB fields for better GDPR conformity.",
"require": {
"symfony/console": "^6.3",
"ifsnop/mysqldump-php": "^2.12",
"bomoko/mysql-cnf-parser": "^0.0.3",
"fakerphp/faker": "^1.23",
"symfony/event-dispatcher": "^6.3"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nico de Groot",
"email": "[email protected]"
},
{
"name": "Axel Rutz",
"email": "[email protected]"
}
],
"bin": [
"mysqldump"
],
"autoload": {
"psr-4": {
"machbarmacher\\GdprDump\\": "src/"
}
},
"extra": {
"patches": {
"ifsnop/mysqldump-php": {
"Add getter": "https://patch-diff.githubusercontent.com/raw/ifsnop/mysqldump-php/pull/137.patch"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^8"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
}
}