forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·36 lines (36 loc) · 1016 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
{
"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.3",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/yaml": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/config": "^4.1"
},
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^6.5",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions"
},
"autoload": {
"psr-0": { "Ambta\\DoctrineEncryptBundle": "" }
},
"target-dir": "Ambta/DoctrineEncryptBundle",
"authors": [
{
"name": "GiveMeAllYourCats",
"email": "[email protected]"
}
]
}