forked from absolute-quantum/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.11 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
{
"name": "michaeldegroot/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
"license": "MIT",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"require": {
"php": "^7.2",
"paragonie/halite": "^4.6",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0",
"symfony/http-kernel": "^4.1|^5.0",
"symfony/config": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"ext-sodium": "Required to use halite encryption library."
},
"autoload": {
"psr-4": { "Ambta\\DoctrineEncryptBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/" }
},
"authors": [
{
"name": "GiveMeAllYourCats",
"email": "specamps@gmail.com"
}
]
}