-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
44 lines (44 loc) · 1.67 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
{
"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": "[email protected]",
"homepage": "https://www.ekino.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"monolog/monolog": "^3.6.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
"symfony/translation": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"sonata-project/admin-bundle": "^4.0",
"sonata-project/twig-extensions": "^2.0"
},
"autoload": {
"psr-4": { "Ekino\\DataProtectionBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}