forked from machbarmacher/gdpr-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 959 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
39
{
"name": "machbarmacher/gdpr-dump",
"description": "A drop-in replacement for mysqldump that optionally sanitizes DB fields for better GDPR conformity.",
"require": {
"symfony/console": "^3.0",
"ifsnop/mysqldump-php": "dev-master",
"cweagans/composer-patches": "^1.6",
"bomoko/mysql-cnf-parser": "^0.0.2",
"fzaninotto/faker": "^1.7",
"symfony/event-dispatcher": "~3.4|~4.0"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Axel Rutz",
"email": "axel.rutz@machbarmacher.net"
}
],
"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": "^7.2"
}
}