-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
58 lines (58 loc) · 1.65 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
51
52
53
54
55
56
57
58
{
"name": "smile/gdpr-dump",
"description": "A utility to create anonymized database dumps",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Smile Technical Direction",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"composer-runtime-api": "^2.0",
"doctrine/dbal": "^3.1",
"druidfi/mysqldump-php": "^1.1",
"fakerphp/faker": "^1.17",
"justinrainbow/json-schema": "^5.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"symfony/config": "^6.1",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/event-dispatcher": "^6.1",
"symfony/finder": "^6.1",
"symfony/yaml": "^6.1",
"theseer/tokenizer": "^1.2"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^10.5",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Smile\\GdprDump\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smile\\GdprDump\\Tests\\Framework\\": "tests/framework",
"Smile\\GdprDump\\Tests\\Functional\\": "tests/functional",
"Smile\\GdprDump\\Tests\\Unit\\": "tests/unit"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"bin/gdpr-dump"
]
}