forked from machbarmacher/gdpr-dump
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.13 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
48
49
50
{
"name": "druidfi/gdpr-mysqldump",
"description": "A drop-in replacement for mysqldump that optionally sanitizes DB fields for better GDPR conformity.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Druid.fi",
"homepage": "https://github.com/druidfi",
"role": "Maintainer"
},
{
"name": "Axel Rutz",
"homepage": "https://github.com/geek-merlin"
},
{
"name": "Bomoko",
"homepage": "https://github.com/bomoko"
},
{
"name": "Marko Korhonen",
"homepage": "https://github.com/back-2-95"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"druidfi/mysqldump-php": "^1.1.0",
"fakerphp/faker": "^1.20",
"matomo/ini": "^3.0",
"symfony/console": "^4.4.25|^5.0|^6.0|^7.0",
"symfony/event-dispatcher": "^4.4.25|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.15 || ^9"
},
"bin": [
"mysqldump"
],
"autoload": {
"psr-4": {
"druidfi\\GdprDump\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}