-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 1 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
{
"name": "luhav/havok-n",
"description": "PHP implementation of Havok-N, a modified version of Fletcher & Adler checksums plus an optional iterative hash function.",
"type": "library",
"keywords": [ "checksum", "hash", "Fletcher", "Adler" ],
"homepage": "https://fossil.peepee.party/emojihash/wiki?name=Havok-N",
"license": "BSD-3-Clause-No-Military-License",
"autoload": {
"psr-4": {
"luhav\\": "src/"
}
},
"authors": [
{
"name": "Lucy Havok",
"email": "[email protected]",
"homepage": "https://luhav.github.io/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://fossil.peepee.party/emojihash/ticket",
"forum": "https://fossil.peepee.party/emojihash/forum",
"source": "https://fossil.peepee.party/emojihash/file?name=php/havokn.php"
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5"
}
}