-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
51 lines (51 loc) · 1.07 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "paragonie/ciphersweet",
"description": "Searchable field-level encryption library for relational databases",
"keywords": [
"CRM",
"cryptography",
"database encryption",
"encrypt",
"encryption",
"field-level encryption",
"NIST cryptography",
"FIPS 140-3",
"libsodium",
"queryable encryption",
"searchable encryption",
"SQL encryption"
],
"license": "ISC",
"type": "library",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ParagonIE\\CipherSweet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\CipherSweet\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"paragonie/constant_time_encoding": "^2|^3",
"paragonie/sodium_compat": "^1|^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"vimeo/psalm": "^4"
},
"scripts": {
"static-analysis": "psalm --no-cache --no-suggestions",
"test": "phpunit"
}
}