forked from absolute-quantum/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·32 lines (32 loc) · 881 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
{
"name": "joshpme/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",
"doctrine/orm": ">=2.5",
"symfony/property-access": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0",
"symfony/http-kernel":"^3.4|^4.0",
"symfony/config":"^3.4|^4.0",
"symfony/stopwatch": ">=2.2"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"paragonie/halite": ">=4.3",
"paragonie/sodium_compat": ">=1.5",
"defuse/php-encryption": "^2.1"
},
"autoload": {
"psr-4": { "DoctrineEncryptBundle\\": "" }
},
"authors": [
{
"name": "Josh P",
"email": "packagist@joshp.me"
}
]
}