forked from ekino/EkinoDataProtectionBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.38 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
{
"name": "ekino/data-protection-bundle",
"type": "symfony-bundle",
"description": "Data protection bundle",
"keywords": ["data", "protection", "log", "encryption"],
"homepage": "https://github.com/ekino/EkinoDataProtectionBundle",
"license": "MIT",
"authors": [
{
"name": "Rémi Marseille",
"email": "remi.marseille@ekino.com",
"homepage": "https://www.ekino.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-openssl": "*",
"monolog/monolog": "~1.24|~2.0",
"symfony/config": "~4.4",
"symfony/console": "~4.4",
"symfony/dependency-injection": "^4.4",
"symfony/form": "~4.4",
"symfony/http-kernel": "~4.4",
"symfony/translation": "~4.4"
},
"require-dev": {
"ekino/phpstan-banned-code": "^0.3",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.5",
"sensiolabs/security-checker": "^6.0",
"sonata-project/admin-bundle": "3.*"
},
"autoload": {
"psr-4": { "Ekino\\DataProtectionBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}