-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 764 Bytes
/
composer.json
File metadata and controls
50 lines (50 loc) · 764 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "sivin/crypt",
"type": "library",
"description": "Small library for encryption via phpseclib",
"keywords": [
"security",
"crypt",
"nette",
"rsa",
"aes",
"blowfish",
"twofish",
"ssh",
"sftp",
"x509",
"x.509",
"asn1",
"asn.1",
"BigInteger"
],
"require": {
"php": ">= 7.1",
"ext-openssl": "*",
"phpseclib/phpseclib": "^3.0",
"nette/di": "~3.0",
"tracy/tracy": "^2.6"
},
"require-dev": {
"ninjify/nunjuck": "^0.3.0@dev"
},
"license": "MIT",
"authors": [
{
"name": "Milan Sivak",
"email": "sivin@atlas.cz"
}
],
"autoload": {
"psr-4": {
"SiViN\\Crypt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SiViN\\Crypt\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}