-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 978 Bytes
/
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
{
"name": "superbrave/gdpr-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle for using entity annotations according to GDPR requirements and anonymizing/exporting data",
"keywords": [
"annotations",
"GDPR",
"anonymizing",
"exporting"
],
"homepage": "https://www.superbrave.nl",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"doctrine/annotations": "^1.4",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/options-resolver": "^3.4 || ^4.0",
"symfony/property-access": "^3.4 || ^4.0",
"symfony/serializer": "^3.4 || ^4.0"
},
"require-dev": {
"doctrine/collections": "^1.5",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Superbrave\\GdprBundle\\": ""
}
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.2.0"
},
"sort-packages": true
}
}