forked from 51systems/doctrine-encrypt-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 778 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 778 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
{
"name": "51systems/doctrine-encrypt-module",
"description": "ZF2 Module for Doctrine2 field encryption",
"type": "library",
"license": "MIT",
"keywords": [
"ZF2",
"Zend",
"Doctrine"
],
"homepage": "https://github.com/51systems/doctrine-encrypt-module",
"authors": [
{
"name": "Dustin Thomson",
"email": "dthomson@51systems.com"
}
],
"require": {
"php": ">=5.3",
"zendframework/zend-crypt": ">=2.2",
"doctrine/doctrine-module": "0.*",
"51systems/doctrine-encrypt" : "dev-master"
},
"autoload": {
"psr-0": {
"DoctrineEncryptModule": "src/"
},
"classmap" : ["Module.php"]
},
"bin": [
]
}