-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "accredifysg/php-keccak-64bit",
"description": "Fast, dependency-free Keccak (224/256/384/512) and SHAKE (128/256) for 64-bit PHP — a drop-in, ~5x faster alternative to kornrunner/keccak.",
"type": "library",
"keywords": [
"keccak",
"keccak256",
"sha3",
"shake",
"shake128",
"shake256",
"hash",
"ethereum",
"cryptography"
],
"license": "MIT",
"authors": [
{
"name": "Accredify",
"homepage": "https://accredify.io"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"ext-openssl": "*",
"kornrunner/keccak": "^1.1",
"laravel/pint": "^1.22",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5 || ^12.0"
},
"suggest": {
"ext-keccak256": "The Keccak256PHP C extension (https://github.com/Accredify/Keccak256PHP) provides a native Keccak-256 that is faster still."
},
"autoload": {
"psr-4": {
"Accredify\\Keccak\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Accredify\\Keccak\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --no-coverage",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-clover coverage/clover.xml",
"lint": "pint -p",
"stan": "phpstan analyse",
"check": [
"@lint",
"@stan",
"@test"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}