forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1006 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 1006 Bytes
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
{
"name": "combodo/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "aes256", "openssl", "encrypt", "decrypt", "bundle"],
"license": "MIT",
"description": "Symfony 2 bundle which allows to encrypt data in database with some encrypt algorithm, this fork make use of open ssl",
"require": {
"php": ">=5.4",
"doctrine/orm": ">=2.5",
"ext-openssl": "*"
},
"autoload": {
"psr-0": { "Combodo\\DoctrineEncryptBundle": "" }
},
"target-dir": "Combodo/DoctrineEncryptBundle",
"authors": [
{
"name": "Victor Melnik",
"email": "melnikvictorl@gmail.com"
},
{
"name": "Dustin Thomson",
"email": "dthomson@51systems.com"
},
{
"name": "Bruno DA SILVA",
"email": "bruno.dasilva@combodo.com"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}