-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.27 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
{
"name": "sidus/encryption-bundle",
"description": "The EncryptionBundle allows you to store encrypted files and data in Doctrine's entity in a very simple way",
"keywords": [
"encryption",
"mcrypt"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"email": "[email protected]",
"homepage": "https://github.com/VincentChalnot"
},
{
"name": "Corentin Bouix",
"email": "[email protected]",
"homepage": "https://github.com/corentinbouix"
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"symfony/framework-bundle": ">=2.8"
},
"suggest": {
"doctrine/doctrine-bundle": "Use Doctrine to encrypt and decrypt entities automatically",
"ext-sodium": "The Sodium library is native in PHP 7.2",
"ext-mcrypt": "Don't use this except for backward compatibility purpose",
"paragonie/sodium_compat": "Use this for a Sodium polyfill",
"phpseclib/mcrypt_compat": "If you need backward compatibility but don't want to compile the extension"
},
"autoload": {
"psr-4": {
"Sidus\\EncryptionBundle\\": ""
}
}
}