-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
42 lines (42 loc) · 1.08 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
33
34
35
36
37
38
39
40
41
42
{
"name": "flexihash/flexihash",
"type": "library",
"description": "Flexihash is a small PHP library which implements consistent hashing",
"homepage": "https://github.com/pda/flexihash",
"license": "MIT",
"authors": [
{
"name": "Paul Annesley",
"email": "[email protected]",
"homepage": "http://paul.annesley.cc"
},
{
"name": "Dom Morgan",
"email": "[email protected]",
"homepage": "https://d3r.com"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*",
"php-coveralls/php-coveralls": "^2.2",
"symfony/config": "^5.1.3",
"symfony/console": "^5.1.3",
"symfony/filesystem": "^5.1.3",
"symfony/stopwatch": "^5.1.3",
"symfony/yaml": "^5.1.3"
},
"autoload": {
"psr-4": {
"Flexihash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flexihash\\Tests\\": "tests/"
}
}
}