-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
43 lines (43 loc) · 1.2 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
{
"name": "webnet-fr/database-anonymizer",
"type": "library",
"description": "Database anonymizer.",
"keywords": [
"php",
"database",
"anonymizer"
],
"homepage": "https://webnet.fr",
"license": "MIT",
"require": {
"php": ">=8.1",
"doctrine/dbal": "^2.6 || ^3.0",
"fakerphp/faker": "^1.15",
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/config": "^4.2|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.2|^5.0|^6.0|^7.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3.0",
"phpunit/phpunit": "^9.5.28|^10.5",
"symfony/yaml": "^4.2|^5.0|^6.0|^7.0"
},
"suggest": {
"symfony/config": "To configure anonymizer.",
"symfony/yaml": "To configure anonymizer using yaml files."
},
"autoload": {
"psr-4": {
"WebnetFr\\DatabaseAnonymizer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebnetFr\\DatabaseAnonymizer\\Tests\\": "tests/DatabaseAnonymizer/Tests"
}
},
"bin": ["bin/database-anonymizer"],
"config": {
"sort-packages": true
}
}