-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
32 lines (32 loc) · 953 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
31
32
{
"name": "paragonie/easyrsa",
"description": "Simple and secure asymmetric encryption powered by PHPSecLib",
"keywords": [
"RSA",
"public-key",
"asymmetric",
"cryptography"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ParagonIE\\EasyRSA\\": "src"
}
},
"require": {
"php": "^5.6|^7|^8",
"phpseclib/phpseclib": "^2",
"defuse/php-encryption": "^2",
"paragonie/constant_time_encoding": "^1|^2",
"paragonie/random_compat": ">= 2"
},
"require-dev": {
"phpunit/phpunit": "^5|^6|^7|^8|^9",
"vimeo/psalm": "^4"
},
"suggest": {
"ext-sodium": "Libsodium offers far better cryptography than RSA can ever offer. Use libsodium instead of EasyRSA.",
"paragonie/halite": "A simple and secure libsodium wrapper. Consider using Halite instead of EasyRSA."
}
}