-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.94 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.94 KB
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": "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": "rich@richmorgan.me",
"role": "Creator and Lead Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/ionux/phactor.git"
}
],
"support": {
"issues": "https://github.com/ionux/phactor/issues",
"email": "rich@richmorgan.me",
"source": "https://github.com/ionux/phactor"
},
"autoload": {
"psr-4": {
"Phactor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phactor\\": "src/"
}
},
"require": {
"php": ">=7.4",
"ext-bcmath": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ext-gmp": "*",
"ext-bcmath": "*",
"ext-openssl": "*"
},
"suggest": {
"ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
}
}