-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 898 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 898 Bytes
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
{
"name": "cypherbits/php-blake3",
"description": "BLAKE3 hashing algorithm PHP extension (native C, SIMD) for fast cryptographic hashing.",
"keywords": ["blake3", "hash", "crypto", "php-extension", "simd"],
"homepage": "https://github.com/cypherbits/php-blake3",
"license": "MIT",
"type": "php-ext",
"support": {
"issues": "https://github.com/cypherbits/php-blake3/issues",
"source": "https://github.com/cypherbits/php-blake3"
},
"funding": [
{"type": "ko-fi", "url": "https://ko-fi.com/cypherbits"}
],
"authors": [
{
"name": "cypherbits",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.3"
},
"php-ext": {
"extension-name": "blake3",
"configure-options": [
{
"name": "enable-blake3",
"description": "Enable the BLAKE3 extension (--enable-blake3)",
"needs-value": false
}
]
}
}