-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (39 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
{
"name": "easeappphp/ea-halite",
"description": "A very simple and safe PHP library that provides wrapper methods to handle encryption, decryption along with authentication in both symmetric & asymmetric modes for both text content and files appropriately. This library is based upon Halite library from Paragonie Initiative Enterprises.",
"keywords": ["php", "hmac", "hash", "symmetric", "asymmetric", "encryption", "decryption", "seal", "unseal", "digital signature", "halite"],
"homepage": "https://www.easeapp.org/",
"type": "library",
"require": {
"php": ">=7.3",
"paragonie/halite": "4",
"paragonie/hidden-string": "^2.0",
"paragonie/constant_time_encoding": "^2.4"
},
"require-dev": {
"php": ">=7.3",
"paragonie/halite": "4",
"paragonie/hidden-string": "^2.0",
"paragonie/constant_time_encoding": "^2.4"
},
"license": "MIT",
"authors": [
{
"name": "Raghuveer Dendukuri",
"email": "[email protected]",
"homepage": "https://www.easeapp.org/",
"role": "Developer"
},
{
"name": "Pradeep Ganapathy",
"email": "[email protected]",
"homepage": "https://www.easeapp.org/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"EaseAppPHP\\EAHalite\\": "src/"
}
}
}