-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "amashukov/keccak-php",
"description": "Keccak-256 and SHA-3 family permutations in pure PHP.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/AndreyMashukov/keccak-php",
"keywords": ["keccak", "keccak-256", "keccak256", "sha3", "sha-3", "shake", "shake128", "shake256", "ethereum", "evm", "hash", "hashing", "cryptography", "blockchain", "pure-php"],
"authors": [
{
"name": "Andrei Mashukov",
"email": "a.mashukoff@gmail.com",
"homepage": "https://github.com/AndreyMashukov"
}
],
"support": {
"issues": "https://github.com/AndreyMashukov/keccak-php/issues",
"source": "https://github.com/AndreyMashukov/keccak-php"
},
"require": {
"php": ">=8.3",
"ext-mbstring": "*"
},
"require-dev": {
"amashukov/rector-php-rules": "^0.1.0",
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Amashukov\\Keccak\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amashukov\\Keccak\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse",
"cs": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"rector": "rector process --dry-run"
}
}