-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.26 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
{
"name": "dmstr/yii2-anonymizer-module",
"description": "GDPR-compliant user data anonymization module for Yii2 applications",
"keywords": [
"yii2",
"module",
"gdpr",
"anonymization",
"privacy",
"data-protection",
"rest-api"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "dmstr",
"homepage": "https://github.com/dmstr"
}
],
"support": {
"issues": "https://github.com/dmstr/yii2-anonymizer-module/issues",
"source": "https://github.com/dmstr/yii2-anonymizer-module"
},
"require": {
"php": ">=8.1",
"yiisoft/yii2": "^2.0.45",
"bizley/jwt": "^4.0",
"dmstr/yii2-rbac-migration": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"codeception/codeception": "^5.0"
},
"suggest": {
"2amigos/yii2-usuario": "For using the built-in UsuarioAnonymizationHelper"
},
"autoload": {
"psr-4": {
"dmstr\\anonymizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dmstr\\anonymizer\\tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}