-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.42 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "famoser/elliptic",
"description": "PHP Elliptic Curve Cryptography library",
"type": "library",
"homepage": "https://github.com/famoser/elliptic",
"keywords": ["NIST", "brainpool", "bernstein", "weierstrass", "montgomery", "edwards", "elliptic", "curve"],
"license": "MIT",
"authors": [
{
"name": "Florian Moser",
"email": "git@famoser.ch",
"homepage": "https://famoser.ch/",
"role": "Author"
}
],
"require": {
"php": "^8.1",
"ext-gmp": "*"
},
"require-dev": {
"sop/asn1": "^4.1",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.0",
"symfony/yaml": "^6.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"danielburger1337/sha3-shake": "^1.1",
"paragonie/ecc": "^2.5",
"famoser/agnes": "^4.3"
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"autoload": {
"psr-4": {
"Famoser\\Elliptic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Famoser\\Elliptic\\Tests\\Unit\\": "tests/unit",
"Famoser\\Elliptic\\Tests\\Integration\\": "tests/integration",
"Famoser\\Elliptic\\Tests\\ConstTime\\": "tests/consttime",
"Famoser\\Elliptic\\Tests\\Performance\\": "tests/performance"
}
}
}