-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 866 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
{
"name": "philetaylor/ciphersweet-encrypt",
"type": "symfony-bundle",
"keywords": ["doctrine", "symfony", "encrypt", "decrypt"],
"license": "MIT",
"description": "Symfony 5.1+/PHP7.4 bundle which allows to encrypt data in database but keep it searchable, uses CipherSweet from https://ciphersweet.paragonie.com",
"require": {
"php": ">=7.4",
"symfony/framework-bundle": ">=5.1",
"doctrine/orm": ">=2.5",
"paragonie/ciphersweet": "^2"
},
"autoload": {
"psr-0": {
"DoctrineCiphersweetBundle\\": ""
},
"psr-4": {
"DoctrineCiphersweetBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"authors": [
{
"name": "Phil Taylor",
"email": "[email protected]"
}
]
}