forked from 51systems/doctrine-encrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (28 loc) · 724 Bytes
/
composer.json
File metadata and controls
31 lines (28 loc) · 724 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
{
"name": "51systems/doctrine-encrypt",
"type": "library",
"keywords": ["doctrine", "aes256", "encrypt", "decrypt"],
"license": "MIT",
"description": "Package encrypts and decrypts Doctrine fields through life cycle events.",
"require": {
"php": ">=5.3.2",
"doctrine/orm": "~2.0",
"ext-mcrypt": "*"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-0": { "DoctrineEncrypt": "src" }
},
"authors": [
{
"name": "Victor Melnik",
"email": "melnikvictorl@gmail.com"
},
{
"name": "Dustin Thomson",
"email": "dthomson@51systems.com"
}
]
}