-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.16 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "awesome/crc_fast",
"description": "Fast SIMD hardware-accelerated CRC-32 and CRC-64 calculation capable of >100GiB/s",
"type": "php-ext",
"keywords": ["crc", "crc32", "crc64", "simd", "checksum"],
"homepage": "https://github.com/awesomized/crc-fast-php-ext",
"license": [
"Apache-2.0",
"MIT"
],
"authors": [
{
"name": "Don MacAskill",
"homepage": "https://github.com/onethumb",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/awesomized/crc-fast-php-ext/issues",
"source": "https://github.com/awesomized/crc-fast-php-ext"
},
"php-ext": {
"extension-name": "crc_fast",
"configure-options": [
{
"name": "with-crc-fast",
"description": "Specify the path to the crc-fast library",
"needs-value": true
}
]
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
},
"require": {
"php": "^8.1"
}
}