-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1020 Bytes
/
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
33
34
35
36
37
38
{
"name": "jspeedz/php-consistent-hashing",
"description": "Multi-probe consistent hashing implementation for PHP",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11"
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "jspeedz"
}
],
"autoload": {
"psr-4": {
"Jspeedz\\PhpConsistentHashing\\": "src/"
}
},
"scripts": {
"generate-test-data": "@php tests/data/generatedata.php",
"test": "@php vendor/bin/phpunit",
"phpstan": "@php vendor/bin/phpstan analyse",
"phpstanpro": "@php vendor/bin/phpstan --pro"
},
"scripts-descriptions": {
"generate-test-data": "Re-generate test data for tests",
"test": "Run all tests",
"phpstan": "Runs PHPStan",
"phpstanpro": "Runs PHPStan in PRO mode!"
},
"require": {
"php": ">=8.2"
},
"config": {
"process-timeout": 0
}
}