forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 691 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "ambta/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "aes256", "rijndael", "encrypt", "decrypt"],
"license": "MIT",
"description": "Symfony 2 bundle which allows to encrypt data in database with some encrypt algorithm",
"require": {
"php": ">=5.4",
"symfony/framework-bundle": ">=2.5",
"doctrine/orm": ">=2.5",
"ext-mcrypt": "*"
},
"autoload": {
"psr-0": { "Ambta\\DoctrineEncryptBundle": "" }
},
"target-dir": "Ambta/DoctrineEncryptBundle",
"authors": [
{
"name": "Marcel van Nuil",
"email": "marcel@ambta.com"
}
]
}