-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
40 lines (40 loc) · 1004 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
39
40
{
"name": "tuupola/base62",
"description": "Base62 encoder and decoder for arbitrary data",
"keywords": [
"base62"
],
"homepage": "https://github.com/tuupola/base62",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"require": {
"php" : "^7.1|^8.0"
},
"autoload": {
"psr-4": {
"Tuupola\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\": "tests"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"phpbench/phpbench": "^0.15.0|1.0.0-alpha3",
"overtrue/phplint": "^2.3",
"phpstan/phpstan": "^0.12.38"
},
"suggest": {
"ext-gmp": "GMP extension provides the fastest encoding and decoding."
}
}