forked from phpecc/phpecc
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (59 loc) · 1.8 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
{
"name": "paragonie/ecc",
"description": "PHP Elliptic Curve Cryptography library",
"type": "library",
"homepage": "https://github.com/phpecc/phpecc",
"keywords": ["secp256k1", "secp256r1", "nistp192", "nistp224", "nistp256", "nistp384", "nistp521", "ECDSA", "diffie", "hellman", "ECDH", "elliptic", "curve", "phpecc"],
"license": "MIT",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"homepage": "https://paragonie.com",
"email": "[email protected]",
"role": "New Maintainer"
},
{
"name": "Matyas Danter",
"homepage": "http://matejdanter.com/",
"role": "Previous Author"
},
{
"name": "Thibaud Fabre",
"email": "[email protected]",
"homepage": "http://aztech.io",
"role": "Previous Maintainer"
},
{
"name": "Thomas Kerin",
"email": "[email protected]",
"role": "Previous Maintainer"
}
],
"require": {
"php": "^7.1||^8.0",
"paragonie/sodium_compat": "^1|^2",
"ext-gmp": "*",
"genkgo/php-asn1": "^2"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"squizlabs/php_codesniffer": "^2|^3",
"symfony/yaml": "^2.6|^3.0|^4",
"vimeo/psalm": "^2|^3|^4|^5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Mdanter\\Ecc\\": "src/"
}
},
"suggest": {
"ext-openssl": "(PHP 8.1, OpenSSL 3+) Improved performance, less worries about side-channels"
},
"autoload-dev": {
"psr-4": {
"Mdanter\\Ecc\\Tests\\": "tests/unit",
"Mdanter\\Ecc\\WycheProof\\": "tests/wycheproof"
}
}
}