-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
34 lines (34 loc) · 965 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
33
34
{
"name": "simplito/elliptic-php",
"description": "Fast elliptic curve cryptography",
"type": "library",
"homepage": "https://github.com/simplito/elliptic-php",
"keywords": ["elliptic", "curve", "cryptography", "ECC",
"ECDH", "ECDSA", "EdDSA",
"secp256k1", "curve25519", "curve25519-weier", "ed25519",
"nistp192", "nistp224", "nistp256", "nistp384", "nistp521"],
"license": "MIT",
"authors": [
{
"name": "Simplito Team",
"email": "s.smyczynski@simplito.com",
"homepage": "https://simplito.com"
}
],
"require": {
"ext-gmp": "*",
"simplito/bn-php": "~1.1.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpbench/phpbench": "@dev"
},
"autoload": {
"psr-4": {
"Elliptic\\": "lib/"
}
},
"scripts": {
"test": "phpunit --verbose"
}
}