-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
63 lines (63 loc) · 1.08 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "poly-crypto/poly-crypto",
"description": "High-level cryptographic functions that are interoperable between NodeJS and PHP 7.1+",
"keywords": [
"encryption",
"decryption",
"encrypt",
"decrypt",
"AES",
"AES-256",
"AES256",
"AES-256-GCM",
"AES256GCM",
"GCM",
"bcrypt",
"md5",
"sha1",
"sha256",
"sha512",
"hash",
"digest",
"slug",
"symmetric",
"cipher",
"ciphertext",
"crypto",
"cryptography",
"Node",
"NodeJS",
"node-forge",
"PHP",
"openssl",
"random",
"urandom"
],
"homepage": "https://github.com/kensnyder/poly-crypto",
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Ken Snyder",
"email": "kendsnyder@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0",
"ext-openssl": "*",
"ext-gmp": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-0": {
"PolyCrypto": "src"
},
"psr-4": {
"PolyCrypto\\": "src/"
}
},
"require-dev": {
"kahlan/kahlan": "^5.1"
}
}