-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
45 lines (45 loc) · 1.35 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
{
"name": "webnet-fr/database-anonymizer-bundle",
"type": "symfony-bundle",
"description": "Database anonymizer bundle.",
"keywords": [
"php",
"database",
"anonymizer"
],
"homepage": "https://webnet.fr",
"license": "MIT",
"require": {
"php": "^7.2.5|^8.2",
"symfony/console": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/doctrine-bridge": "^5.4|^6.0",
"dragonniers/database-anonymizer": "^0.0.1"
},
"require-dev": {
"doctrine/annotations": "^1.6",
"phpunit/phpunit": "^9.5.28",
"fakerphp/faker": "^1.21",
"symfony/config": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"doctrine/orm": "^2.6",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"doctrine/doctrine-bundle": "^2.8.2"
},
"suggest": {
"doctrine/annotations": "To enable annotations.",
"symfony/console": "To enable console commands.",
"symfony/config": "To configure anonymizer.",
"symfony/yaml": "To configure anonymizer using yaml files."
},
"autoload": {
"psr-4": {
"WebnetFr\\DatabaseAnonymizerBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebnetFr\\DatabaseAnonymizerBundle\\Tests\\": "tests"
}
}
}