-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
47 lines (47 loc) · 1.87 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
{
"name": "ionux/phactor",
"description": "Phactor is a high-performance PHP implementation of the elliptic curve math functions required to generate & verify private/public (asymmetric) EC keypairs and ECDSA signatures based on secp256k1 curve parameters. This library also includes a class to generate Service Identification Numbers (SINs) based on the published Identity Protocol v1 spec.",
"keywords": ["phactor","performance","ecdsa","ec","dsa","bitcoin","elliptic","curve","cryptography","crypto","encryption","digital","signature","algorithm","asymmetric","public","private","keypair","keygen","verify","generate","key","keys","math","library","SIN","service","identification","number","secp256k1","bitcoin","identity","protocol","BIP","arbitrary","precision","integer","base58","base","hex","binary","calculator","prime","coprime","gmp","bcmath"],
"homepage": "https://github.com/ionux/phactor",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Rich Morgan",
"email": "[email protected]",
"role": "Creator and Lead Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/ionux/phactor.git"
}
],
"support": {
"issues": "https://github.com/ionux/phactor/issues",
"email": "[email protected]",
"source": "https://github.com/ionux/phactor"
},
"autoload": {
"psr-4": {
"Phactor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phactor\\": "src/"
}
},
"require": {
"php": ">=5.6.0",
"ext-bcmath": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7.9"
},
"suggest": {
"ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
}
}