This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
forked from public-square/phpecc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 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
{
"name": "uma/phpecc",
"description": "Temporary fork of public-square/phpecc",
"type": "library",
"abandoned": "paragonie/ecc",
"homepage": "https://github.com/1ma/phpecc",
"keywords": ["schnorr", "secp256k1", "secp256r1", "nistp192", "nistp224", "nistp256", "nistp384", "nistp521", "ECDSA", "diffie", "hellman", "ECDH", "elliptic", "curve", "phpecc"],
"license": "MIT",
"authors": [
{
"name": "Matyas Danter",
"homepage": "http://matejdanter.com/",
"role": "Author"
},
{
"name": "Thibaud Fabre",
"email": "thibaud@aztech.io",
"homepage": "http://aztech.io",
"role": "Maintainer"
},
{
"name": "Thomas Kerin",
"email": "afk11@users.noreply.github.com",
"role": "Maintainer"
},
{
"name": "Ology Newswire, Inc",
"email": "protocol@vpsqr.com",
"homepage": "https://vpsqr.com/",
"role": "Maintainer"
}
],
"require": {
"php": "^8.0",
"ext-gmp": "*",
"uma/phpasn1": "^2.5.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^2.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Mdanter\\Ecc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mdanter\\Ecc\\Tests\\": "tests/unit",
"Mdanter\\Ecc\\WycheProof\\": "tests/wycheproof"
}
}
}